aboutsummaryrefslogtreecommitdiffstats
path: root/sneakyidea/templates/page.html
diff options
context:
space:
mode:
authorArnaud BOS <arnaud.tlse@gmail.com>2011-02-15 20:54:44 +0000
committerArnaud BOS <arnaud.tlse@gmail.com>2011-02-15 20:54:44 +0000
commita8e6acdd7d69a2c3fceb29257dbb317fdd166da2 (patch)
treea0bc6746e3b0a1a5160df7ffe05c90e820fe0956 /sneakyidea/templates/page.html
parent51bb3d45d1b376ee3f9c498c4828b5e537494630 (diff)
downloadpelican-themes-a8e6acdd7d69a2c3fceb29257dbb317fdd166da2.tar.gz
Added theme sneakyidea ;) Based on notmyidea w/ just some css changing
Diffstat (limited to 'sneakyidea/templates/page.html')
-rw-r--r--sneakyidea/templates/page.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/sneakyidea/templates/page.html b/sneakyidea/templates/page.html
new file mode 100644
index 0000000..9635fb8
--- /dev/null
+++ b/sneakyidea/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 %}