summaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: 9d9c89c9d8288acc2bbb63b98b80732814047692 (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
<!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="/about/">about</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> 2009!
</span>
</div></body></html>