diff options
author | The Dod <unclezzzen@gmail.com> | 2012-11-05 12:51:12 +0700 |
---|---|---|
committer | The Dod <unclezzzen@gmail.com> | 2012-11-05 12:51:12 +0700 |
commit | bd942f2d4f6df52e2aa4ff44d4050da0f260d76e (patch) | |
tree | 87722bedef5215b19de69abb7a85441be36ca227 /waterspill-en/templates/page.html | |
parent | 662052faa4749d3fec2ff1149e853f71d5c2b434 (diff) | |
download | pelican-themes-bd942f2d4f6df52e2aa4ff44d4050da0f260d76e.tar.gz |
initial commit
Diffstat (limited to 'waterspill-en/templates/page.html')
-rw-r--r-- | waterspill-en/templates/page.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/waterspill-en/templates/page.html b/waterspill-en/templates/page.html new file mode 100644 index 0000000..f9a091a --- /dev/null +++ b/waterspill-en/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 %} |