Quick catalog theme bugfix

This commit is contained in:
Michael Foster 2013-07-18 11:40:21 -04:00
parent 461d98b945
commit de4b5b3962

View File

@ -16,16 +16,17 @@
</header>
<ul>
{% for post in recent_posts %}
<a href="{{post.link}}">
<div class="thread">
<img src="{{post.file}}" class="{{post.board}}" title="{{post.bump|date('%b %d %H:%M')}}">
<span class="replies">
<strong>{{ post.reply_count }} {% if post.reply_count == 1 %}{% trans 'reply' %}{% else %}{% trans 'replies' %}{% endif %}</strong><br/>{{ post.body }}
</span>
</div>
</a>
{% endfor %}
{% for post in recent_posts %}
<div class="thread">
<a href="{{post.link}}">
<img src="{{post.file}}" class="{{post.board}}" title="{{post.bump|date('%b %d %H:%M')}}">
</a>
<span class="replies">
<strong>{{ post.reply_count }} {% if post.reply_count == 1 %}{% trans 'reply' %}{% else %}{% trans 'replies' %}{% endif %}</strong><br/>
{{ post.body }}
</span>
</div>
{% endfor %}
</ul>
<hr/>