Rewrite to Django from scratch. Now it's much more user-friendly.
[cookbook.git] / example / data / template / cookbook / base.html
diff --git a/example/data/template/cookbook/base.html b/example/data/template/cookbook/base.html
new file mode 100644 (file)
index 0000000..5e0b6f8
--- /dev/null
@@ -0,0 +1,29 @@
+<html>
+<head>
+    <title>{% block title %}Cookbook{% endblock %}</title>
+    <link rel="stylesheet" href="{{ STATIC_URL }}style.css" />
+    <link rel="shortcut icon" href="{{ STATIC_URL }}cookbook.ico" />
+</head>
+
+<body>
+    <div id="navigation">
+        {% block navigation %}
+        <ul>
+            <li><a href="/">Recipes</a></li>
+            <li><a href="/tags/">Tags</a></li>
+            <li><a href="/admin/">Admin</a></li>
+        </ul>
+        {% endblock %}
+    </div>
+    <div class="fullclear"></div>
+
+    <div id="content">
+        {% block content %}{% endblock %}
+    </div>
+    <div class="fullclear"></div>
+
+    <div id="footer">
+        <p>powered by <a href="http://physics.drexel.edu/~wking/unfolding-disasters/cookbook/">cookbook</a></p>
+    </div>
+</body>
+</html>