From 9648ce73fda47739be5465d8142c38bda588c6f6 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Sat, 10 Mar 2012 03:04:13 +0100 Subject: Initial commit --- templates/aggregator/posts.html | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 templates/aggregator/posts.html (limited to 'templates/aggregator/posts.html') diff --git a/templates/aggregator/posts.html b/templates/aggregator/posts.html new file mode 100644 index 0000000..32f1ed7 --- /dev/null +++ b/templates/aggregator/posts.html @@ -0,0 +1,45 @@ + + + ryuslash.org + + + + {% for post in list.object_list %} +

+

+ + + {{ post.updated }} + +
+ {% if post.feed.uses_title %} +
{{ post.title }}
+ {% endif %} + + {% autoescape off %} + {% if post.feed.br2nl %} + {{ post.body|linebreaks }} + {% else %} + {{ post.body }} + {% endif %} + {% endautoescape %} +

+ {% endfor %} + + + + -- cgit v1.2.3-54-g00ecf