diff options
author | Matt <s@tuxlite.com> | 2013-03-12 17:24:22 +0000 |
---|---|---|
committer | Matt <s@tuxlite.com> | 2013-03-12 17:24:22 +0000 |
commit | d5f56689a8ac207ef57dd8bcccced8e85ad3a3ed (patch) | |
tree | 25520321f3a40a2599c7d3c6b286dbd37c92ef50 /tuxlite_zf/templates/page.html | |
parent | 53d6c4254aa2b4781b850419d63a40527c307d71 (diff) | |
download | pelican-themes-d5f56689a8ac207ef57dd8bcccced8e85ad3a3ed.tar.gz |
Add new TuxLite_ZF theme.
Diffstat (limited to 'tuxlite_zf/templates/page.html')
-rw-r--r-- | tuxlite_zf/templates/page.html | 9 |
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 %} |