diff options
author | erdgeist <erdgeist@bauklotz.local> | 2015-08-16 16:38:25 +0200 |
---|---|---|
committer | erdgeist <erdgeist@bauklotz.local> | 2015-08-16 16:38:25 +0200 |
commit | 23f0e1561767dd8a396188e317bae5920d171ea8 (patch) | |
tree | a67f44e39ad8a45e42d60634488a65c37f3ad432 /themes/erdgeist/templates/post.tmpl |
Initial import of my nikola website
Diffstat (limited to 'themes/erdgeist/templates/post.tmpl')
-rw-r--r-- | themes/erdgeist/templates/post.tmpl | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/themes/erdgeist/templates/post.tmpl b/themes/erdgeist/templates/post.tmpl new file mode 100644 index 0000000..c1a0ad7 --- /dev/null +++ b/themes/erdgeist/templates/post.tmpl | |||
@@ -0,0 +1,51 @@ | |||
1 | ## -*- coding: utf-8 -*- | ||
2 | <%namespace name="helper" file="post_helper.tmpl"/> | ||
3 | <%namespace name="pheader" file="post_header.tmpl"/> | ||
4 | <%namespace name="comments" file="comments_helper.tmpl"/> | ||
5 | <%inherit file="base.tmpl"/> | ||
6 | |||
7 | <%block name="extra_head"> | ||
8 | ${parent.extra_head()} | ||
9 | % if post.meta('keywords'): | ||
10 | <meta name="keywords" content="${post.meta('keywords')|h}"> | ||
11 | % endif | ||
12 | %if post.description(): | ||
13 | <meta name="description" content="${post.description()}"> | ||
14 | %endif | ||
15 | <meta name="author" content="${post.author()}"> | ||
16 | %if post.prev_post: | ||
17 | <link rel="prev" href="${post.prev_post.permalink()}" title="${post.prev_post.title()|h}" type="text/html"> | ||
18 | %endif | ||
19 | %if post.next_post: | ||
20 | <link rel="next" href="${post.next_post.permalink()}" title="${post.next_post.title()|h}" type="text/html"> | ||
21 | %endif | ||
22 | % if post.is_draft: | ||
23 | <meta name="robots" content="noindex"> | ||
24 | % endif | ||
25 | ${helper.open_graph_metadata(post)} | ||
26 | ${helper.twitter_card_information(post)} | ||
27 | ${helper.meta_translations(post)} | ||
28 | </%block> | ||
29 | |||
30 | <%block name="content"> | ||
31 | <article class="col-md-9 col-lg-7 col-sm-12 post-${post.meta('type')} h-entry hentry postpage" itemscope="itemscope" itemtype="http://schema.org/Article"> | ||
32 | ${pheader.html_post_header()} | ||
33 | <div class="e-content entry-content" itemprop="articleBody text"> | ||
34 | ${post.text()} | ||
35 | </div> | ||
36 | <aside class="postpromonav"> | ||
37 | <nav> | ||
38 | ${helper.html_tags(post)} | ||
39 | ${helper.html_pager(post)} | ||
40 | </nav> | ||
41 | </aside> | ||
42 | % if not post.meta('nocomments') and site_has_comments: | ||
43 | <section class="comments"> | ||
44 | <h2>${messages("Comments")}</h2> | ||
45 | ${comments.comment_form(post.permalink(absolute=True), post.title(), post._base_path)} | ||
46 | </section> | ||
47 | % endif | ||
48 | ${helper.mathjax_script(post)} | ||
49 | </article> | ||
50 | ${comments.comment_link_script()} | ||
51 | </%block> | ||