summaryrefslogtreecommitdiff
path: root/global/templates/base.html.j2
diff options
context:
space:
mode:
authorBotond Hende <contact@wazul.moe>2026-05-02 01:28:12 +0200
committerBotond Hende <contact@wazul.moe>2026-05-02 01:40:55 +0200
commit9b99142654b30184992aef9ee201856e4355aa23 (patch)
treead3f5a323bb4244a92209c4a068fa3e8d2987460 /global/templates/base.html.j2
parent389a88088e8f5e40127d024a95c8f63318669b02 (diff)
navbar implemented on blog, comics and codenames
Diffstat (limited to 'global/templates/base.html.j2')
-rw-r--r--global/templates/base.html.j26
1 files changed, 3 insertions, 3 deletions
diff --git a/global/templates/base.html.j2 b/global/templates/base.html.j2
index 21530c7..caf9064 100644
--- a/global/templates/base.html.j2
+++ b/global/templates/base.html.j2
@@ -7,10 +7,10 @@
<meta property="og:title" content="{% block og_page_title %}{% endblock %}" />
<meta property="og:type" content="{% block og_type %}website{% endblock %}" />
<meta property="og:url" content="{{ url }}" />
-{% block head_extra %} <link rel="stylesheet" href="{{ site.assets_path_static }}/css/bootstrap-grid.min.css" />{% endblock %}
+{% block head_extra %} <link rel="stylesheet" href="{{ site.assets_path_static }}/css/bootstrap-grid.min.css" />
+ <link rel="stylesheet" href="{{ site.assets_path_static }}/css/navbar.css" />{% endblock %}
</head>
<body>
-{% block body %}{% endblock %}
+{% block body %}{% include 'navbar.html.j2' %}{% endblock %}
</body>
-<footer>{% block footer %}{% endblock %}</footer>
</html>