summaryrefslogtreecommitdiffstats
path: root/_base.html
blob: 2f3223dd39dc8614a12e58a839d1b8303c42539b (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
<!DOCTYPE html>
<html lang="en">
<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]-->
</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 }}
      |
      2012
      |
      <a href="mailto:spline@spline.de">spline@spline.de</a>
    </footer>
  </div>
</body>
</html>