bbz/templates/base.html
2025-02-15 18:56:05 +01:00

22 lines
560 B
HTML

<!doctype html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>:: sysek.hopto.org - {% block title %}{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
</head>
<body>
<div class="container">
<div class="header">
<ul>
<li><a href="{{ url_for('index') }}">Main</a></li>
</ul>
</div>
<div class="content">
{% block content %}
{% endblock %}
</div>
</div>
</body>
</html>