Skip to content

Commit

Permalink
fixed display of quotes in template
Browse files Browse the repository at this point in the history
  • Loading branch information
sclaughl committed Jan 27, 2012
1 parent a58631d commit 1bd9e60
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions templates/tumblr/tumblr.html
Expand Up @@ -3,13 +3,14 @@ <h2>{{ tumblr_content.blog.title }}</h2>
{% for post in tumblr_content.posts %}
<p>
{{ post.type }} @ <a href="{{ post_url }}">{{ post.date }}</a>

</p>
<p>
{% if post.type == "text" %}
{{ post.body|safe }}
{% endif %}

{% if post.type == "quote" %}
{{ post.caption }}
{{ post.text|safe }}
{% endif %}

{% if post.type == "link" %}
Expand Down

0 comments on commit 1bd9e60

Please sign in to comment.