blob: 983f118877408472f510be7fa659bb2dac6e149d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
## -*- coding: utf-8 -*-
<%inherit file="list_post.tmpl"/>
<%namespace name="feeds_translations" file="feeds_translations_helper.tmpl" import="*"/>
<%block name="extra_head">
${feeds_translations.head(author, kind, rss_override=False)}
</%block>
<%block name="content">
<article class="authorpage">
<header>
<h1>${title|h}</h1>
%if description:
<p>${description}</p>
%endif
<div class="metadata">
${feeds_translations.feed_link(author, kind)}
</div>
</header>
%if posts:
<ul class="postlist">
% for post in posts:
<li><time class="listdate" datetime="${post.formatted_date('webiso')}" title="${post.formatted_date(date_format)|h}">${post.formatted_date(date_format)|h}</time> <a href="${post.permalink()}" class="listtitle">${post.title()|h}</a></li>
% endfor
</ul>
%endif
</article>
</%block>
|