summaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/bootstrap3/templates/post.tmpl
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2021-02-03 19:17:00 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2021-02-03 19:17:00 -0500
commit3a0d66f07b112b6d2bdc2b57bbf717a89a351ce6 (patch)
treea7cf56282e54f05785243bc1e903d6594f2c06ba /nikola/data/themes/bootstrap3/templates/post.tmpl
parent787b97a4cb24330b36f11297c6d3a7a473a907d0 (diff)
New upstream version 8.1.2.upstream/8.1.2
Diffstat (limited to 'nikola/data/themes/bootstrap3/templates/post.tmpl')
-rw-r--r--nikola/data/themes/bootstrap3/templates/post.tmpl59
1 files changed, 0 insertions, 59 deletions
diff --git a/nikola/data/themes/bootstrap3/templates/post.tmpl b/nikola/data/themes/bootstrap3/templates/post.tmpl
deleted file mode 100644
index 8d9f88a..0000000
--- a/nikola/data/themes/bootstrap3/templates/post.tmpl
+++ /dev/null
@@ -1,59 +0,0 @@
-## -*- coding: utf-8 -*-
-<%namespace name="helper" file="post_helper.tmpl"/>
-<%namespace name="pheader" file="post_header.tmpl"/>
-<%namespace name="comments" file="comments_helper.tmpl"/>
-<%inherit file="base.tmpl"/>
-
-<%block name="extra_head">
- ${parent.extra_head()}
- % if post.meta('keywords'):
- <meta name="keywords" content="${post.meta('keywords')|h}">
- % endif
- %if post.description():
- <meta name="description" itemprop="description" content="${post.description()}">
- %endif
- <meta name="author" content="${post.author()}">
- %if post.prev_post:
- <link rel="prev" href="${post.prev_post.permalink()}" title="${post.prev_post.title()|h}" type="text/html">
- %endif
- %if post.next_post:
- <link rel="next" href="${post.next_post.permalink()}" title="${post.next_post.title()|h}" type="text/html">
- %endif
- % if post.is_draft:
- <meta name="robots" content="noindex">
- % endif
- ${helper.open_graph_metadata(post)}
- ${helper.twitter_card_information(post)}
- ${helper.meta_translations(post)}
-</%block>
-
-<%block name="content">
-<article class="post-${post.meta('type')} h-entry hentry postpage" itemscope="itemscope" itemtype="http://schema.org/Article">
- ${pheader.html_post_header()}
- <div class="e-content entry-content" itemprop="articleBody text">
- ${post.text()}
- </div>
- <aside class="postpromonav">
- <nav>
- ${helper.html_tags(post)}
- ${helper.html_pager(post)}
- </nav>
- </aside>
- % if not post.meta('nocomments') and site_has_comments:
- <section class="comments hidden-print">
- <h2>${messages("Comments")}</h2>
- ${comments.comment_form(post.permalink(absolute=True), post.title(), post._base_path)}
- </section>
- % endif
- ${helper.mathjax_script(post)}
-</article>
-${comments.comment_link_script()}
-</%block>
-
-<%block name="sourcelink">
-% if show_sourcelink:
- <li>
- <a href="${post.source_link()}" id="sourcelink">${messages("Source")}</a>
- </li>
-% endif
-</%block>