aboutsummaryrefslogtreecommitdiffstats
path: root/aggregator/templates/aggregator/post_detail.html
diff options
context:
space:
mode:
Diffstat (limited to 'aggregator/templates/aggregator/post_detail.html')
-rw-r--r--aggregator/templates/aggregator/post_detail.html24
1 files changed, 0 insertions, 24 deletions
diff --git a/aggregator/templates/aggregator/post_detail.html b/aggregator/templates/aggregator/post_detail.html
deleted file mode 100644
index eb39f95..0000000
--- a/aggregator/templates/aggregator/post_detail.html
+++ /dev/null
@@ -1,24 +0,0 @@
-{% extends "aggregator/base.html" %}
-
-{% block content %}
-{% include "aggregator/post_content.html" with post=object %}
-
-<div id="pager">
- {% with next=object.get_next_by_updated previous=object.get_previous_by_updated %}
- {% if previous %}
- <div class="nav-prev">
- <a href="/post/{{ previous.pk }}/" id="previous">
- {{ previous.title }}</a>
- </div>
- {% endif %}
-
- {% if next %}
- <div class="nav-next">
- <a href="/post/{{ next.pk }}/" id="next">{{ next.title }}</a>
- </div>
- {% endif %}
- {% endwith %}
- <div class="clear"></div>
-
-</div>
-{% endblock %}