summaryrefslogtreecommitdiff
path: root/themes/erdgeist/templates/list_projects.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'themes/erdgeist/templates/list_projects.tmpl')
-rw-r--r--themes/erdgeist/templates/list_projects.tmpl16
1 files changed, 16 insertions, 0 deletions
diff --git a/themes/erdgeist/templates/list_projects.tmpl b/themes/erdgeist/templates/list_projects.tmpl
new file mode 100644
index 0000000..b8d67b5
--- /dev/null
+++ b/themes/erdgeist/templates/list_projects.tmpl
@@ -0,0 +1,16 @@
1## -*- coding: utf-8 -*-
2<%block name="content">
3<!-- Begin post-list ${post_list_id} -->
4<div id="${post_list_id}" class="post-list">
5 %if posts:
6 <div class="post-list list-unstyled">
7 % for post in posts:
8 <p class="post-list-item">
9 <a href="${post.permalink()}">${post.title(lang)}</a> ${post.description()}
10 </p>
11 % endfor
12 </div>
13 %endif
14</div>
15<!-- End post-list ${post_list_id} -->
16</%block>