aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/base.html
blob: 50ab84ebd8eb837182c4436c3eac3e219f1b913c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 #}
    <a rel="me" href="https://octodon.social/@spacekookie"></a>
    
    <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>