summaryrefslogtreecommitdiff
path: root/themes/erdgeist/templates/list_projectnews.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'themes/erdgeist/templates/list_projectnews.tmpl')
-rw-r--r--themes/erdgeist/templates/list_projectnews.tmpl16
1 files changed, 16 insertions, 0 deletions
diff --git a/themes/erdgeist/templates/list_projectnews.tmpl b/themes/erdgeist/templates/list_projectnews.tmpl
new file mode 100644
index 0000000..abb515b
--- /dev/null
+++ b/themes/erdgeist/templates/list_projectnews.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 <ul class="poetry-list post-list list-unstyled">
7 % for post in posts:
8 <li class="post-list-item">
9 <div style="float:left; margin-right: .6em"><a href="${post.permalink()}">(${post.formatted_date('%Y-%m-%d')})</a></div> ${post.text(lang)}
10 </li>
11 % endfor
12 </ul>
13 %endif
14</div>
15<!-- End post-list ${post_list_id} -->
16</%block>