iron-blogger/templates/week.tmpl

19 lines
560 B
Cheetah

Blogging BW am ${start.strftime("%d.%m.%Y")}
<ul>
% for p in sorted(posts, key=lambda p:p['date']):
<%
u=users[p['username']]
for l in u['links']:
if l[0] == p['blogname']:
b = l
%>
<li>${p['date'].strftime("%H:%M")}: <span class="user"><strong><a href="${p['url']}">${p['title'] or "[ohne Titel]"}</a></strong></span><br/>
${u['name']} \
% if u.get('twitter') != False:
(@<a href="http://twitter.com/${p['username']}">${p['username']}</a>) \
% endif
in <a href="${b[2]}">${b[1]}</a>:<blockquote>${p['description']}</blockquote>
</li>
% endfor
</ul>