lib.itmens/catalog/templates/_sidebar_item.html
2024-04-20 12:55:21 -04:00

17 lines
474 B
HTML

{% load static %}
{% load i18n %}
{% load thumb %}
<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>
<div>
{% with "_item_card_metadata_"|add:item.class_name|add:".html" as template %}
{% include template with hide_brief=1 hide_category=1 %}
{% endwith %}
</div>
</footer>
</article>