diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 28 |
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> |