aboutsummaryrefslogtreecommitdiffstats
path: root/martyalchin/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'martyalchin/templates/base.html')
-rw-r--r--martyalchin/templates/base.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/martyalchin/templates/base.html b/martyalchin/templates/base.html
new file mode 100644
index 0000000..eea18f9
--- /dev/null
+++ b/martyalchin/templates/base.html
@@ -0,0 +1,15 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+ <head>
+ <title>{% block title %}{{ SITENAME }}{%endblock%}</title>
+ <meta charset="utf-8" />
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css" type="text/css" />
+ <link href="{{ SITEURL }}/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} ATOM Feed" />
+ </head>
+ <body>
+ {% block content %} {% endblock %}
+
+ <div class="copyright info vcard">Design by <a class="fn url"
+ href="http://martyalchin.com">Marty Alchin</a>, <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">some rights reserved</a>. Powered by <a href="http://alexis.notomyidea.org/pelican/">pelican</a></div>
+ </body>
+</html>