lib.itmens/catalog/templates/_sidebar_item.html

18 lines
474 B
HTML
Raw Normal View History

2022-12-24 01:28:24 -05:00
{% 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>
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>
</footer>
</article>