phantasmobile/app/templates/listitem.html

20 lines
654 B
HTML
Raw Normal View History

2023-07-16 11:26:14 +05:30
<div class="item">
<a href="{{ item.get_absolute_url }}">
<div class="info">
2023-08-21 11:24:53 +02:00
<h1>{{ item.title }}</h1>
2023-08-22 17:35:56 +02:00
<h2>{{ item.data.title }}</h2>
2023-07-16 11:26:14 +05:30
</div>
2023-12-01 20:45:47 +01:00
<div class="image {{item.data.type }}">
2023-07-16 11:26:14 +05:30
<img src={{ item.data.thumbnail }}>
</div>
</a>
{% if item.public_comments.count %}
2023-07-16 11:26:14 +05:30
<div class="comments">
2023-08-21 11:11:52 +02:00
{% with comments=item.public_comments.count %}
<a href="{{ item.get_absolute_url }}">{{ comments }} comment{{ comments |pluralize }}</a>
{% endwith %}
2023-07-16 11:26:14 +05:30
</div>
{% endif %}
2023-07-16 11:26:14 +05:30
</div>