aboutsummaryrefslogtreecommitdiff
path: root/infra/website/crumbs/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'infra/website/crumbs/templates/base.html')
-rw-r--r--infra/website/crumbs/templates/base.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/infra/website/crumbs/templates/base.html b/infra/website/crumbs/templates/base.html
new file mode 100644
index 000000000000..1ec37dedc803
--- /dev/null
+++ b/infra/website/crumbs/templates/base.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html lang="{{ DEFAULT_LANG }}">
+ <head>
+ {% block metatags %}{% endblock %}
+
+ <title>{{ SITENAME }}</title>
+
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ {# Mastodon verification link #}
+ <meta rel="me" href="https://octodon.social/@spacekookie">
+
+ <link href="{{ SITEURL }}/theme/css/crumbs.css" rel="stylesheet">
+ {% block css %}{% endblock %}
+
+ <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.6/css/all.css">
+ <link rel="alternate" type="application/rss+xml" href="{{ SITEURL }}/rss.xml" title="{{ SITENAME }} — Latest Posts" />
+ </head>
+
+ <body>
+ <div class="wrap">
+ {# Wrappen body block #}
+ {% block body %}{% endblock %}
+
+ {# Footer only used on 'home' #}
+ {% block footer %}{% endblock %}
+ </div>
+ </body>
+</html>