site-sophistry/templates/macros/pic_item.html

7 lines
203 B
HTML
Raw Permalink Normal View History

2022-10-05 07:07:39 +00:00
{% macro pic_item(title, src, class="") %}
2022-09-28 11:42:00 +00:00
<div class="image-item{% if class %} {{class}}{% endif %}">
<img src="{{ get_url(path=src) }}" />
<div>{{ title }}</div>
</div>
2022-10-05 07:07:39 +00:00
{% endmacro pic_item %}