summaryrefslogtreecommitdiff
path: root/themes/erdgeist/templates/list_projects.tmpl
blob: b8d67b5c78602f6c2bc718125d08f9254a8fb7a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## -*- coding: utf-8 -*-
<%block name="content">
<!-- Begin post-list ${post_list_id} -->
<div id="${post_list_id}" class="post-list">
    %if posts:
    <div class="post-list list-unstyled">
        % for post in posts:
            <p class="post-list-item">
                <a href="${post.permalink()}">${post.title(lang)}</a> ${post.description()}
           </p>
        % endfor
    </div>
    %endif
</div>
<!-- End post-list ${post_list_id} -->
</%block>