aboutsummaryrefslogtreecommitdiffstats
path: root/graymill/templates/page.html
diff options
context:
space:
mode:
authorRahul Nair <rn@rahul-nair.com>2017-08-04 07:47:36 +0530
committerJustin Mayer <entroP@gmail.com>2017-08-03 19:17:36 -0700
commit3f9ddddab6f49eb2d2df35d47de78c0dddea3088 (patch)
tree65be5b1919d6f2feff3f94a5f7f8e6cbc575253d /graymill/templates/page.html
parent2a00d3cbf6ed7745ae3cd2f6a557bad31d4a3990 (diff)
downloadpelican-themes-3f9ddddab6f49eb2d2df35d47de78c0dddea3088.tar.gz
Add Graymill theme
Diffstat (limited to 'graymill/templates/page.html')
-rw-r--r--graymill/templates/page.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/graymill/templates/page.html b/graymill/templates/page.html
new file mode 100644
index 0000000..dc6cfff
--- /dev/null
+++ b/graymill/templates/page.html
@@ -0,0 +1,8 @@
+{% extends "base.html" %}
+{% block title %}{{ page.title }}{% endblock %}
+{% block content %}
+{% if PDF_PROCESSOR %}
+ <a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">Download the PDF file</a>
+{% endif %}
+{{ page.content }}
+{% endblock %}