summaryrefslogtreecommitdiffstats
path: root/theme/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/base.html')
-rw-r--r--theme/templates/base.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/theme/templates/base.html b/theme/templates/base.html
new file mode 100644
index 0000000..ca6f2e3
--- /dev/null
+++ b/theme/templates/base.html
@@ -0,0 +1,50 @@
+<!DOCTYPE html>
+<html lang="{{ DEFAULT_LANG }}">
+<head>
+ {% block head %}
+ <title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
+ <meta charset="utf-8" />
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/bootstrap.css" />
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/highlight.css" />
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/main.css" />
+ <link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Full Atom Feed" />
+ {% endblock head %}
+</head>
+
+<body id="index" class="home">
+ <div id="wrap">
+
+ <nav id="menu">
+ <ul class="inline">
+ {% for title, link in MENUITEMS %}
+ <li><a href="{{ link }}">{{ title }}</a></li>
+ {% endfor %}
+ </ul>
+ </nav>
+
+ <header id="banner" class="body">
+ <h1><a href="{{ SITEURL }}">{{ SITENAME }}</a></h1>
+ </header>
+
+ <hr class="top" />
+
+ {% block content %}
+ {% endblock %}
+
+ <hr/>
+
+ <footer>
+ <a rel="license"
+ href="http://creativecommons.org/licenses/by/3.0/deed.en_US">
+ <img alt="Creative Commons License" style="border-width:0"
+ src="http://i.creativecommons.org/l/by/3.0/80x15.png" /> </a>
+ This <span xmlns:dct="http://purl.org/dc/terms/"
+ href="http://purl.org/dc/dcmitype/Text"
+ rel="dct:type">blog</span> is licensed under a <a rel="license"
+ href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Creative
+ Commons Attribution 3.0 Unported License</a>.
+ </footer>
+
+ </div>
+</body>
+</html>