aboutsummaryrefslogtreecommitdiffstats
path: root/ryuslash/aggregator/templates/aggregator/posts.html
diff options
context:
space:
mode:
Diffstat (limited to 'ryuslash/aggregator/templates/aggregator/posts.html')
-rw-r--r--ryuslash/aggregator/templates/aggregator/posts.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/ryuslash/aggregator/templates/aggregator/posts.html b/ryuslash/aggregator/templates/aggregator/posts.html
new file mode 100644
index 0000000..b70cb0d
--- /dev/null
+++ b/ryuslash/aggregator/templates/aggregator/posts.html
@@ -0,0 +1,43 @@
+{% extends "aggregator/base.html" %}
+{% load posts_extras %}
+
+{% block head %}
+<link href="/feeds/posts/" rel="alternate" type="application/rss+xml"
+ title="All posts" />
+{% endblock %}
+
+{% block content %}
+ {% for post in list.object_list %}
+ <article class="post">
+ (<span class="keyword">defpost</span>
+ <a href="{{ post.link }}"
+ class="variable-name">{{ post.title|slugify|nameless|truncate:48 }}</a>
+ (<img src="/static/images/logos/{{ post.icon }}" width="16"
+ height="16"/>)
+ <div class="doc">
+ {% autoescape off %}{{ post.content }}{% endautoescape %}
+ </div>
+ <span class="string">&quot;{{ post.updated }}&quot;</span>)
+ </article>
+ {% endfor %}
+
+<div id="pager">
+ {% if list.has_previous %}
+ <span class="nav-prev">
+ <a href="/{{ category }}/{{ list.previous_page_number }}/"
+ id="previous">[previous]</a>
+ </span>
+ {% endif %}
+
+ <span id="current">
+ {{ list.number }} / {{ list.paginator.num_pages }}
+ </span>
+
+ {% if list.has_next %}
+ <span class="nav-next">
+ <a href="/{{ category }}/{{ list.next_page_number }}/"
+ id="next">[next]</a>
+ </span>
+ {% endif %}
+</div>
+{% endblock %}