11 lines
346 B
HTML
11 lines
346 B
HTML
{% macro fi(pic, link='', alt='', credit='') %}
|
|
<div class="featured-image">
|
|
<figure>
|
|
{% if link %}<a href="{{ link }}"{% if alt %} alt="{{ alt }}"{% endif %}>{% endif %}<img src="{{ pic }}" />{% if link %}</a>{% endif %}
|
|
{% if credit %}
|
|
<figcaption>Bild: {{ credit }}</figcaption>
|
|
{% endif %}
|
|
</figure>
|
|
</div>
|
|
{% endmacro %}
|