summaryrefslogtreecommitdiff
path: root/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/page.html')
-rw-r--r--templates/page.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/templates/page.html b/templates/page.html
new file mode 100644
index 0000000..83fa0dc
--- /dev/null
+++ b/templates/page.html
@@ -0,0 +1,57 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4<head>
5<meta http-equiv="content-type" content="text/html;charset=utf-8" />
6<meta name="google-site-verification" content="Ycqn8jLbKJrWCDs97nD20cjYEhFf875j1teoofSd6Sc" />
7<meta name="generator" content="Ventriloquy 0.1" />
8<meta name="author" content="Michael Crute" />
9<title>The Random Thoughts of a Programmer</title>
10<style type="text/css">@import url('/resources/site-min.css');</style>
11</head>
12<body>
13
14<div id="header">
15 <h1 class="headline"><a href="/">mike<span>.</span>crute<span>.org</span></a></h1>
16</div>
17
18<div id="contents">
19
20{% block contents %}
21{{ contents }}
22{% endblock %}
23
24</div>
25
26<div id="footer">
27{% if is_blog %}
28<div id="footer-blog">
29 <ul class="links">
30 <li><span class="label">Blog Links:</span></li>
31 <li><a href="archive">Archive</a></li>
32 <li><a href="tags">Tags</a></li>
33 <li><a href="feed">Atom Feed</a></li>
34 </ul>
35</div>
36{% endif %}
37
38<div id="footer-page">
39 <ul class="links">
40 <li><span class="label">Site Links:</span></li>
41 <li><a href="/">Home</a></li>
42 <li><a href="/blog">Blog</a></li>
43 <li><a href="/personal_blog">Personal Blog</a></li>
44 <li><a href="/code">Code</a></li>
45 <li><a href="http://twitter.com/mcrute">Twitter</a></li>
46 </ul>
47
48 {% block update_date %}
49 <p class="updated"><span class="label">Page last updated:</span> {{ build_date }}</p>
50 {% endblock %}
51 <p class="copyright">Copyright &copy; 2010 Michael E. Crute &lt;<a href="mailto:mcrute@gmail.com">mcrute@gmail.com</a>&gt;. Contact me for other uses.</p>
52 <p class="poweredby">This site powered by <a href="http://www.vim.org">VIM</a>, <a href="http://docutils.sourceforge.net">ReStructuredText</a> and <a href="http://python.org">Python</a>.</p>
53</div>
54</div>
55
56</body>
57</html>