aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_zf/templates/page.html
diff options
context:
space:
mode:
authorJustin Mayer <entrop@gmail.com>2013-03-30 11:28:31 -0700
committerJustin Mayer <entrop@gmail.com>2013-03-30 11:28:31 -0700
commitf8c19921c7920857098f2eb285bf18dbdd14d7f6 (patch)
tree52563b4c69439e72d6a65a6a7a10978c820b1341 /tuxlite_zf/templates/page.html
parent561c283d4bfa9ffa960f84a025fbbfb914ae7561 (diff)
parent0099192688966ca407030058548e2c38be37e43b (diff)
downloadpelican-themes-f8c19921c7920857098f2eb285bf18dbdd14d7f6.tar.gz
Merge pull request #81 from Mins/master
Add new theme based on Zurb Foundation 4
Diffstat (limited to 'tuxlite_zf/templates/page.html')
-rw-r--r--tuxlite_zf/templates/page.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/tuxlite_zf/templates/page.html b/tuxlite_zf/templates/page.html
new file mode 100644
index 0000000..7614c61
--- /dev/null
+++ b/tuxlite_zf/templates/page.html
@@ -0,0 +1,9 @@
+{% extends "base.html" %}
+{% block title %}{{ page.title }}{% endblock %}
+{% block content %}
+ <h1>{{ page.title }}</h1>
+ {% import 'translations.html' as translations with context %}
+ {{ translations.translations_for(page) }}
+ {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">PDF</a>{% endif %}
+ {{ page.content }}
+{% endblock %}