aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill/templates/page.html
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2011-02-01 19:42:53 +0000
committerAlexis Metaireau <alexis@notmyidea.org>2011-02-01 19:42:53 +0000
commit92808823a34cabb29b85ae2550e83ef39fc132a6 (patch)
treeb8f3b21125e8279e0b279554ba4d5e0e0fc0a3c2 /waterspill/templates/page.html
parent9896db2d95ec58883d1adc41a2a29408260a4ed0 (diff)
downloadpelican-themes-92808823a34cabb29b85ae2550e83ef39fc132a6.tar.gz
Add the waterspill theme, thanks to Freeculture.
Diffstat (limited to 'waterspill/templates/page.html')
-rw-r--r--waterspill/templates/page.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/waterspill/templates/page.html b/waterspill/templates/page.html
new file mode 100644
index 0000000..f9a091a
--- /dev/null
+++ b/waterspill/templates/page.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+{% block title %}{{ page.title }}{% endblock %}
+{% block content %}
+
+<div class="blogItem">
+ <h2><a href="{{ SITEURL }}/pages/{{ page.url }}">{{ page.title }}</a></h3>
+ {{ page.content }}
+ {% include 'twitter.html' %}
+
+ {% if PDF_PROCESSOR %}<h3 class="blogMeta"><a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
+ the pdf</a></h3>{% endif %}
+
+
+</div>
+
+{% endblock %}