mirror of
https://github.com/adulau/photoblog.git
synced 2024-11-21 17:37:06 +00:00
46 lines
2 KiB
Cheetah
46 lines
2 KiB
Cheetah
|
## -*- coding: utf-8 -*-
|
||
|
<%namespace name="helper" file="post_helper.tmpl"/>
|
||
|
<%namespace name="comments" file="comments_helper.tmpl"/>
|
||
|
|
||
|
<%def name="html_title()">
|
||
|
%if title and not post.meta('hidetitle'):
|
||
|
<h1 class="post-title p-name entry-title" itemprop="headline name"><a href="${post.permalink()}" class="u-url">${post.title()|h}</a></h1>
|
||
|
%endif
|
||
|
</%def>
|
||
|
|
||
|
<%def name="html_translations(post)">
|
||
|
% if len(post.translated_to) > 1:
|
||
|
<div class="metadata posttranslations translations">
|
||
|
<h3 class="posttranslations-intro">${messages("Also available in:")}</h3>
|
||
|
% for langname in translations.keys():
|
||
|
% if langname != lang and post.is_translation_available(langname):
|
||
|
<p><a href="${post.permalink(langname)}" rel="alternate" hreflang="${langname}">${messages("LANGUAGE", langname)}</a></p>
|
||
|
% endif
|
||
|
% endfor
|
||
|
</div>
|
||
|
% endif
|
||
|
</%def>
|
||
|
|
||
|
<%def name="html_sourcelink()">
|
||
|
% if show_sourcelink:
|
||
|
<p class="sourceline"><a href="${post.source_link()}" id="sourcelink">${messages("Source")}</a></p>
|
||
|
% endif
|
||
|
</%def>
|
||
|
|
||
|
<%def name="html_post_header()">
|
||
|
<header>
|
||
|
${html_title()}
|
||
|
<div class="metadata">
|
||
|
<p class="byline author vcard"><span class="byline-name fn">${post.author()}</span></p>
|
||
|
<p class="dateline"><a href="${post.permalink()}" rel="bookmark"><time class="post-date published dt-published" datetime="${post.date.isoformat()}" itemprop="datePublished" title="${post.formatted_date(date_format)}">${post.formatted_date(date_format)}</time></a></p>
|
||
|
% if not post.meta('nocomments') and site_has_comments:
|
||
|
<p class="commentline">${comments.comment_link(post.permalink(), post._base_path)}
|
||
|
% endif
|
||
|
%if post.description():
|
||
|
<meta name="description" itemprop="description" content="${post.description()}">
|
||
|
%endif
|
||
|
</div>
|
||
|
${html_translations(post)}
|
||
|
</header>
|
||
|
</%def>
|