Browse Source

Quick catalog theme bugfix

pull/40/head
Michael Foster 11 years ago
parent
commit
de4b5b3962
  1. 7
      templates/themes/catalog/catalog.html

7
templates/themes/catalog/catalog.html

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

Loading…
Cancel
Save