lissarchive-website/themes/custom/templates/post_list_directive.tmpl

17 lines
432 B
Cheetah
Raw Permalink Normal View History

## -*- coding: utf-8 -*-
<%block name="content">
<!-- Begin post-list ${post_list_id} -->
<div id="${post_list_id}" class="post-list">
%if posts:
2020-05-04 21:58:03 +00:00
<ul class="post-list">
% for post in posts:
<li class="post-list-item">
2020-05-04 21:58:03 +00:00
<a href="${post.permalink(lang)}">${post.title(lang)|h}</a>
</li>
% endfor
2020-05-04 21:58:03 +00:00
</ul>
%endif
</div>
<!-- End post-list ${post_list_id} -->
2018-03-05 23:04:28 +00:00
</%block>