2022-12-24 01:28:24 -05:00
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load thumb %}
|
2023-05-20 11:01:18 -04:00
|
|
|
<article class="item">
|
|
|
|
<div>
|
|
|
|
<a href="{% url 'catalog:retrieve' item.url_path item.uuid %}">
|
|
|
|
<img src="{{ item.cover|thumb:'normal' }}" alt="" class="entity-card__img">
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<footer>
|
2023-06-09 02:23:15 -04:00
|
|
|
<div>
|
|
|
|
{% with "_item_card_metadata_"|add:item.class_name|add:".html" as template %}
|
|
|
|
{% include template with hide_brief=1 hide_category=1 %}
|
|
|
|
{% endwith %}
|
|
|
|
</div>
|
2023-05-20 11:01:18 -04:00
|
|
|
</footer>
|
|
|
|
</article>
|