22 lines
1.3 KiB
HTML
22 lines
1.3 KiB
HTML
{# output a featured image for an article #}
|
|
{% macro fi(pic, link='', alt='', title='', credit='', credit_link='') %}
|
|
{% if not link %}{% set link = pic %}{% endif %}
|
|
<div class="featured-image">
|
|
<figure>
|
|
{% if link %}<a href="{{ link }}"{% if title %} title="{{ title | escape }}"{% endif %}>{% endif %}<img class="image-process-featured" src="{{ pic }}"{% if alt %} alt="{{ alt | escape}}"{% endif %}/>{% if link %}</a>{% endif %}
|
|
{% if credit %}<figcaption>Bild: {% if credit_link %}<a href="{{ credit_link }}" alt="Bildquelle: {{ credit | escape }}" target="_blank">{% endif %}{{ credit }}{% if credit_link %}</a>{% endif %}</figcaption>{% endif %}
|
|
</figure>
|
|
</div>
|
|
{% endmacro %}
|
|
|
|
{# output a card image #}
|
|
{% macro ci(pic, link='', alt='', title='', credit='', credit_link='') %}
|
|
{% if not link %}{% set link = pic %}{% endif %}
|
|
<div class="card-image">
|
|
<figure>
|
|
{% if link %}<a href="{{ link }}"{% if title %} title="{{ title | escape }}"{% endif %}>{% endif %}<img class="image-process-card" src="{{ pic }}"{% if alt %} alt="{{ alt | escape }}"{% endif %}/>{% if link %}</a>{% endif %}
|
|
{% if credit %}<figcaption>Bild: {% if credit_link %}<a href="{{ credit_link }}" alt="Bildquelle: {{ credit | escape }}" target="_blank">{% endif %}{{ credit }}{% if credit_link %}</a>{% endif %}</figcaption>{% endif %}
|
|
</figure>
|
|
</div>
|
|
{% endmacro %}
|