aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2015-08-03 19:47:25 +0200
committerDavid Runge <dave@sleepmap.de>2015-08-03 19:47:25 +0200
commitfa0ac55cfeb21b99e0aa256b88035df013c10e6a (patch)
tree52a43cd1f60343390c1bf4c538eb2956b4dd5369
parentdbb67daa1ffa13c45d4c19ac27dbdbbfea542930 (diff)
downloadsleepmap-fa0ac55cfeb21b99e0aa256b88035df013c10e6a.tar.gz
sleepmap-fa0ac55cfeb21b99e0aa256b88035df013c10e6a.tar.bz2
sleepmap-fa0ac55cfeb21b99e0aa256b88035df013c10e6a.tar.xz
sleepmap-fa0ac55cfeb21b99e0aa256b88035df013c10e6a.zip
sleepmap-theme/templates/page.html: Encapsulating page content in main element with class hentry (to further streamline design). Removing pdf processing stuff.
-rw-r--r--sleepmap-theme/templates/page.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/sleepmap-theme/templates/page.html b/sleepmap-theme/templates/page.html
index 9635fb8..b7103d3 100644
--- a/sleepmap-theme/templates/page.html
+++ b/sleepmap-theme/templates/page.html
@@ -1,10 +1,10 @@
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
-<section id="content" class="body">
+<section id="content" class="body">
+ <main class="hentry">
<h1 class="entry-title">{{ page.title }}</h1>
- {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
- the pdf</a>{% endif %}
{{ page.content }}
+ </main>
</section>
{% endblock %}