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>
|
2023-08-16 15:32:59 +00:00
|
|
|
{% 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>
|
2023-08-16 15:32:59 +00:00
|
|
|
{% endif %}
|
2023-07-16 05:56:14 +00:00
|
|
|
</div>
|
|
|
|
|