diff options
author | skami <skami@skami-laptop.dyndns.org> | 2011-02-13 20:21:01 +0100 |
---|---|---|
committer | skami <skami@skami-laptop.dyndns.org> | 2011-02-13 20:21:01 +0100 |
commit | 079da3ce990ccc101b58fe1b5ded8342d52244a6 (patch) | |
tree | 884105ee18236990e0a0d24cb02ecdc20f5d47b5 /lighweight/templates/page.html | |
parent | 4de1596e020f297b18281d39d03753e5a1215aeb (diff) | |
download | pelican-themes-079da3ce990ccc101b58fe1b5ded8342d52244a6.tar.gz |
Ajout du thème «lightweight»
Diffstat (limited to 'lighweight/templates/page.html')
-rw-r--r-- | lighweight/templates/page.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lighweight/templates/page.html b/lighweight/templates/page.html new file mode 100644 index 0000000..47dc631 --- /dev/null +++ b/lighweight/templates/page.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} +{% block title %}{{ page.title }}{% endblock %} +{% block content %} + <h2 class="page_title"><a href="{{ SITEURL }}/pages/{{ page.url }}">{{ page.title }}</a></h1> + {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get + the pdf</a>{% endif %} + <div style="clear: both;"> </div> + <section class="page_content"> + {{ page.content }} + </section> + +{% endblock %} |