summaryrefslogtreecommitdiffstats
path: root/_base.html
diff options
context:
space:
mode:
authorNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-07 16:55:28 +0200
committerNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-07 16:55:28 +0200
commit38857a608bab2ea5eb65bfc1c4614033dbf78597 (patch)
tree04a3000340dba8f1dcb99199759b29744cb8b230 /_base.html
downloadwww-38857a608bab2ea5eb65bfc1c4614033dbf78597.tar.gz
www-38857a608bab2ea5eb65bfc1c4614033dbf78597.tar.bz2
www-38857a608bab2ea5eb65bfc1c4614033dbf78597.zip
initial commit
Diffstat (limited to '_base.html')
-rw-r--r--_base.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/_base.html b/_base.html
new file mode 100644
index 0000000..99b0f06
--- /dev/null
+++ b/_base.html
@@ -0,0 +1,46 @@
+<!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="http://960.gs/css/reset.css" />
+ <link rel="stylesheet" href="http://960.gs/css/text.css" />
+ <link rel="stylesheet" href="http://960.gs/css/960.css" />
+ <link rel="stylesheet" href="{{ url_for("static/css/main.css") }}" type="text/css" />
+ <link rel="stylesheet" href="{{ url_for("static/css/syntax.css") }}" type="text/css" />
+</head>
+<body>
+
+ <div class="container_16">
+ <div id="header" class="grid_16">
+ <h1 class="grid_8 alpha">
+ <img src="http://marian.spline.de/res/logo/png/spline-logo-full-white-transp.png" alt="SPLINE" />
+ </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>