phantasmobile/app/templates/listitem.html

18 lines
526 B
HTML
Raw Normal View History

2023-07-16 05:56:14 +00:00
<div class="item">
<a href="{{ item.get_absolute_url }}">
<h1>{{ item.title }}</h1>
<div class="info">
{{ item.data.title }}
</div>
<div class="image">
<img src={{ item.data.thumbnail }}>
</div>
</a>
{% if item.public_comments.count %}
2023-07-16 05:56:14 +00:00
<div class="comments">
<a href="{{ item.get_absolute_url }}">{{ item.public_comments.count }} comments</a>
</div>
{% endif %}
2023-07-16 05:56:14 +00:00
</div>