summaryrefslogtreecommitdiffstats
path: root/_base.html
blob: fb2c457cd411aa95598435ce690b632dfdc59517 (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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="author" content="{{ author }}" />
  <title>{{ site.title }}{% block title %}: {{ entry.title }}{% endblock %}</title>
  <link rel="stylesheet" href="{{ url_for("static/css/reset.css") }}" type="text/css" />
  <link rel="stylesheet" href="{{ url_for("static/css/text.css") }}" type="text/css" /> 
  <link rel="stylesheet" href="{{ url_for("static/css/960.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" />
</head>
<body onload="highlight()">

  <div class="container_16">
     <div id="header" class="grid_16">
       <h1 class="grid_8 alpha">
          <a href="{{site.url}}">
            <img src="{{ url_for("static/images/logo.png") }}" alt="SPLINE" />
          </a>
       </h1>

        <ol class="grid_8 omega">
        {% for page in site.pages|filter_by_attr('top_link')|sort(attribute='top_link')%}
            <li><a href="{{page.get_url()}}">{{page.title}}</a></li>
        {% endfor %}
        </ol>
    </div>

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

    <div class="clear"></div>
    <div class="grid_16" id="footer">
      <footer>
        {{ site.url }}
        |
        2012
        |
        <a href="mailto:spline@spline.de">spline@spline.de</a>
      </footer>
    </div>
    
  </div>
</body>
</html>