Athenaeum/templates/base.html
2025-05-30 11:41:38 +02:00

20 lines
571 B
HTML

<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>{% block title %}Dark Athenaeum{% endblock %}</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/static/css/styles.css" rel="stylesheet">
</head>
<body class="dark-theme">
{% include "partials/navbar.html" %}
<main class="container py-5">
{% block content %}{% endblock %}
</main>
{% include "partials/footer.html" %}
<script src="/static/js/main.js"></script>
</body>
</html>