Implement syndication of news

This commit is contained in:
Trever Fischer
2012-02-25 14:44:07 -05:00
parent ee82cd40cb
commit 21d4ac4700
4 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
{% load markup %}
{{ obj.body|markdown }}

View File

@@ -1,4 +1,5 @@
{% extends 'base.html' %}
{% load static %}
{% load markup %}
{% load comments %}
@@ -13,4 +14,7 @@
</div>
<div class="commentcount">{% get_comment_count for post as comment_count %}{{comment_count}} comments.</div>
{% endfor %}
{% get_static_prefix as STATIC_PREFIX %}
<a href="/news/feed"><img src="{{ STATIC_PREFIX }}/feed.png"/></a>
{% endblock %}