2024-12-21 20:28:19 +01:00
|
|
|
<!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>
|
2025-02-15 18:56:05 +01:00
|
|
|
<li><a href="{{ url_for('index') }}">Main</a></li>
|
2024-12-21 20:28:19 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|