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