summaryrefslogtreecommitdiff
path: root/global
diff options
context:
space:
mode:
authorBotond Hende <contact@wazul.moe>2026-05-01 23:00:43 +0200
committerBotond Hende <contact@wazul.moe>2026-05-01 23:00:43 +0200
commit389a88088e8f5e40127d024a95c8f63318669b02 (patch)
tree797adef799ee157bc33a4c1be5084ec5eef3bab2 /global
parent32cb783aa8675d275cb9136eeadffa8294d40b89 (diff)
codenames and comic templates refactored with the base template
Diffstat (limited to 'global')
-rw-r--r--global/templates/base.html.j28
1 files changed, 3 insertions, 5 deletions
diff --git a/global/templates/base.html.j2 b/global/templates/base.html.j2
index 61826d9..21530c7 100644
--- a/global/templates/base.html.j2
+++ b/global/templates/base.html.j2
@@ -5,14 +5,12 @@
<title>{% block page_title %}{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta property="og:title" content="{% block og_page_title %}{% endblock %}" />
- <meta property="og:type" content="{% block og_type %}{% 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" />{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
-<footer>
- {% block footer %}{% endblock %}
-</footer>
+<footer>{% block footer %}{% endblock %}</footer>
</html>