phantasmobile/app/templates/listitem.html
2025-03-31 12:03:14 +01:00

19 lines
664 B
HTML

<div class="item">
<a href="{{ item.get_absolute_url }}">
<div class="info">
<h1>{{ item.title|safe }}</h1>
<h2>{{ item.data.title|safe }}</h2>
</div>
<div class="image {{item.data.type }}">
<img src={{ item.data.thumbnail }}>
</div>
</a>
{% if item.public_comments.count %}
<div class="comments">
{% with comments=item.public_comments.count %}
<a href="{{ item.get_absolute_url }}">{{ comments }} comment{{ comments |pluralize }}</a>
{% endwith %}
</div>
{% endif %}
</div>