summaryrefslogtreecommitdiffstats
path: root/templates/base.html
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-07-11 05:35:39 -0400
committerbnewbold <bnewbold@manus.(none)>2007-07-11 05:35:39 -0400
commite152d2f2d1e257b1ec51adb3640e350207fda77d (patch)
tree0d459576de630394d810d10a48c30bebbf0ca336 /templates/base.html
downloadequator-e152d2f2d1e257b1ec51adb3640e350207fda77d.tar.gz
equator-e152d2f2d1e257b1ec51adb3640e350207fda77d.zip
skeletal start, basic recovery of lost progress
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..c2e023b
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html><head>
+{% block style %}
+<link rel="stylesheet" type="text/css" href="/static/default.css">
+{% endblock %}
+{% block javascript %}
+{% endblock %}
+<title>The Equator</title>
+</head><body>
+<div class="main">
+<div style="width: 100%; text-align: center;">
+<h1>{% block title %}The Equator% endblock %}</h1>
+</div>
+{% block content %}
+no content?
+{% endblock %}
+<br>
+<hr>
+<span class="footer">
+<a href="/">home</a> -
+<a href="/go/">do it</a> -
+<a href="/equation/">equations</a> -
+<a href="/variable/">variables</a> -
+<a href="/symbol/">symbols</a>
+<br>Legalese? Copyright? Fuck no!
+<a href="mailto:webmaster@equator.memeschemes.com" style="text-decoration: line-through;">email the webmaster!</a> 2007!
+</span>
+</div></body></html>