summaryrefslogtreecommitdiffstats
path: root/_base.html
blob: a1b2d8deaec607fa670a5f0fe5672a1fe0490fa1 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="utf-8" />
  <meta name="author" content="{{ author }}" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>{{ site.title }}{% block title %}: {{ entry.title }}{% endblock %}</title>
  <link rel="stylesheet" href="{{ url_for("static/css/bootstrap.min.css") }}" type="text/css" />
  <link rel="stylesheet" href="{{ url_for("static/css/syntax.css") }}" type="text/css" />
  <link rel="stylesheet" href="{{ url_for("static/css/main.css") }}" type="text/css" />
  <link rel="stylesheet" href="{{ url_for("static/css/bootstrap-responsive.min.css") }}" type="text/css" />
  <link rel="stylesheet" href="{{ url_for("static/css/responsive.css") }}" type="text/css" />

  <!--[if lt IE 9]>
  <script src="{{ url_for("static/js/html5.js") }}"></script>
  <![endif]-->

  <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
  <link href="/feed.atom" type="application/atom+xml" rel="alternate" title="spline.de">
</head>
<body>
  <div class="container-fluid">
    <header class="row-fluid">
      <a href="{{site.url}}" id="logo">
        <img src="{{ url_for("static/images/logo.png") }}" alt="SPLINE" />
      </a>

      <nav>
        {% for page in site.pages|filter_by_attr('top_link')|sort(attribute='top_link') %}
          <a href="{{ page.get_url() }}">{{ page.title }}</a>
        {% endfor %}
      </nav>
    </header>

    <div id="content">
    {% block content %}{% endblock %}
    </div>

    <footer>
      {{ site.url }}
      |
      <a href="https://www.gnu.org/copyleft/fdl.html">GFDL</a> 2013
      |
      <a href="mailto:spline@spline.de">spline@spline.de</a>
      |
      <a rel="me" href="https://chaos.social/@spline">Mastodon (@spline@chaos.social)</a>
    </footer>
  </div>
</body>
</html>