31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}Mycelium{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ get_url(path='css/main.css') }}">
|
|
<link rel="stylesheet" href="{{ get_url(path='css/dropdown.css') }}">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
|
|
<script src="{{ get_url(path='js/main.js') }}" defer></script>
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body class="bg-white dark:bg-gray-900 text-gray-800 dark:text-white min-h-screen flex flex-col transition-colors duration-200">
|
|
<header>
|
|
{% include "partials/navigation.html" %}
|
|
</header>
|
|
<main>
|
|
<div class="">
|
|
<div class="px-2">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer class="bg-white dark:bg-gray-900 shadow mt-auto">
|
|
{% include "partials/footer.html" %}
|
|
</footer>
|
|
</body>
|
|
</html>
|