aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs/templates/page.html
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2012-01-26 07:54:12 -0800
committerAlexis Metaireau <alexis@notmyidea.org>2012-01-26 07:54:12 -0800
commit5ca71a7c7793832e5becae5717b2f9ac4744bded (patch)
tree1cb09bd2e2b7217423a36240f6fcba5d6890fe5c /tuxlite_tbs/templates/page.html
parent77eff4701ac0bd7a11728531da319bb99d1dbd4a (diff)
parent24aaa07fa699407f56357f867be225a58eaf1bdd (diff)
downloadpelican-themes-5ca71a7c7793832e5becae5717b2f9ac4744bded.tar.gz
Merge pull request #11 from Mins/master
Added tuxlite theme, which is inspired by the original bootstrap theme.
Diffstat (limited to 'tuxlite_tbs/templates/page.html')
-rw-r--r--tuxlite_tbs/templates/page.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/tuxlite_tbs/templates/page.html b/tuxlite_tbs/templates/page.html
new file mode 100644
index 0000000..65470ea
--- /dev/null
+++ b/tuxlite_tbs/templates/page.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% block title %} {% endblock %}
+{% block content %}
+<section id="content" class="body">
+ <h2 class="content-title">{{ page.title }}</h2>
+ {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
+ the pdf</a>{% endif %}
+ {{ page.content }}
+</section>
+{% endblock %}