diff options
Diffstat (limited to 'waterspill/templates/page.html')
-rw-r--r-- | waterspill/templates/page.html | 16 |
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 %} |