aboutsummaryrefslogtreecommitdiffstats
path: root/monospace/templates/page.html
diff options
context:
space:
mode:
authorlwm <luke.murphy@ammeon.com>2013-09-15 14:16:40 +0100
committerlwm <luke.murphy@ammeon.com>2013-09-17 14:46:36 +0100
commit3197b676fe9e55fdd5b8ded77200117e62543fd2 (patch)
tree9a3f34a0ea5c8625c040dfdf300508f9cd4c7399 /monospace/templates/page.html
parent61165760cc5eb6e76b377b18224190380c873525 (diff)
downloadpelican-themes-3197b676fe9e55fdd5b8ded77200117e62543fd2.zip
pelican-themes-3197b676fe9e55fdd5b8ded77200117e62543fd2.tar.gz
pelican-themes-3197b676fe9e55fdd5b8ded77200117e62543fd2.tar.bz2
adapted monospace
Diffstat (limited to 'monospace/templates/page.html')
-rw-r--r--monospace/templates/page.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/monospace/templates/page.html b/monospace/templates/page.html
new file mode 100644
index 0000000..b8c89f7
--- /dev/null
+++ b/monospace/templates/page.html
@@ -0,0 +1,11 @@
+{% extends "base.html" %}
+{% block title %}{{ page.title }}{% endblock %}
+{% block content %}
+<header>
+<h1><a href="{{ SITEURL }}" id="site-title">{# {{ SITENAME }} #} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> {#:#}
+ <a href="{{ SITEURL }}/{{ page.slug }}" id="page-title">{{ page.title }}</a></h1>
+</header>
+<article>
+ {{ page.content }}
+</article>
+{% endblock %}