63 lines
2.1 KiB
Cheetah
63 lines
2.1 KiB
Cheetah
## -*- coding: utf-8 -*-
|
|
<%namespace name="helper" file="post_helper.tmpl"/>
|
|
<%namespace name="pheader" file="post_header.tmpl"/>
|
|
<%namespace name="comments" file="comments_helper.tmpl"/>
|
|
<%namespace name="math" file="math_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
|
|
<meta name="author" content="${post.author()|h}">
|
|
%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)}
|
|
${math.math_styles_ifpost(post)}
|
|
</%block>
|
|
|
|
<%block name="content">
|
|
|
|
<article class="post post">
|
|
<header class="post-header">
|
|
<h1 class="post-title">${post.title()}</h1>
|
|
<section class="post-meta"> by
|
|
% if author_pages_generated:
|
|
<a href="${_link('author', post.author())}">${post.author()|h}</a>
|
|
% else:
|
|
${post.author()|h}
|
|
% endif
|
|
on
|
|
% for tag in post.tags:
|
|
<a href="link://tag/${tag}">#${tag}</a>,
|
|
% endfor
|
|
<time class="post-date" datetime="${post.formatted_date('webiso')}">
|
|
${post.formatted_date(date_format)|h}
|
|
</time>
|
|
</section>
|
|
</header>
|
|
|
|
<section class="post-content">
|
|
${post.text()}
|
|
</section>
|
|
<footer class="post-footer">
|
|
% 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
|
|
${math.math_scripts_ifpost(post)}
|
|
</article>
|
|
${comments.comment_link_script()}
|
|
</%block>
|