diff options
author | skami <skami@skami-laptop.dyndns.org> | 2011-02-09 14:15:30 +0100 |
---|---|---|
committer | skami <skami@skami-laptop.dyndns.org> | 2011-02-09 14:15:30 +0100 |
commit | 16c52c7b84ece3d48fa62022867072b11ad473db (patch) | |
tree | dc0b50ee06d80c1b76146f37944a61187f901298 /notmyidea-cms/templates/page.html | |
parent | 869840185624149e701685ef8021a6d3d46fff3b (diff) | |
download | pelican-themes-16c52c7b84ece3d48fa62022867072b11ad473db.tar.gz |
Adding «notmyidea-cms», a modified version of «notmyidea» for complete
websites...
Diffstat (limited to 'notmyidea-cms/templates/page.html')
-rw-r--r-- | notmyidea-cms/templates/page.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/notmyidea-cms/templates/page.html b/notmyidea-cms/templates/page.html new file mode 100644 index 0000000..9635fb8 --- /dev/null +++ b/notmyidea-cms/templates/page.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} +{% block title %}{{ page.title }}{% endblock %} +{% block content %} +<section id="content" class="body"> + <h1 class="entry-title">{{ page.title }}</h1> + {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get + the pdf</a>{% endif %} + {{ page.content }} +</section> +{% endblock %} |