Rewrite to Django from scratch. Now it's much more user-friendly.
[cookbook.git] / cookbook / template / base.html
diff --git a/cookbook/template/base.html b/cookbook/template/base.html
deleted file mode 100644 (file)
index cfd1b71..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
-    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-
-<html>
-    <head>
-        <title>{{ cookbook.name }}</title>
-<!--
-        <link rel="stylesheet" type="text/css" media="screen"
-              href="/static/style.css"/>
--->
-    </head>
-
-    <body>
-        <div id="main-pane">
-            <div id="header" class="inside-main-pane">
-                <h1><a href="./">{{ cookbook.name }}</a></h1>
-            </div>
-            <div id="content-pane" class="inside-main-pane">
-                <h1>{% block page_title %}{% endblock %}</h1>
-                {% block content %}{% endblock %}
-            </div>
-            <div id="footer" class="inside-main-pane">
-                <p>
-                   Powered by
-                    <a href="http://www.physics.drexel.edu/">Trevor King's</a>
-                   <a href="http://www.physics.drexel.edu/~wking/code/git/git.php?p=cookbook.git">Cookbook</a>.
-                    Built using <a href="http://cherrypy.org/">CherryPy</a>
-                    and <a href="http://jinja.pocoo.org/2/">Jinja2</a>.
-                </p>
-            </div>
-        </div>
-    </body>
-</html>