templates/feeds/all_description.html @ cc77ca937643

Finished implementing all the feeds.
author Steve Losh <steve@stevelosh.com>
date Wed, 14 Jan 2009 19:53:54 -0500
parents (none)
children 3a51bfa414da
{% load markup %}

{% ifequal obj.type 'blog' %}
	{{ obj.item.body|markdown }}
{% endifequal %}

{% ifequal obj.type 'project' %}
	{{ obj.item.body|markdown }}
{% endifequal %}

{% ifequal obj.type 'thought-text' %}
	{{ obj.item.body|markdown }}
{% endifequal %}

{% ifequal obj.type 'thought-link' %}
	<a href="{{ obj.item.url }}">
		{% if obj.item.name %}
			{{ obj.item.name }}
		{% else %}
			{{ obj.item.url }}
		{% endif %}
	</a>
	{% if obj.item.description %}
		{{ obj.item.description|markdown }}
	{% endif %}
{% endifequal %}