17 lines
1.2 KiB
HTML
17 lines
1.2 KiB
HTML
{% if include.lightbox == 'true' %}
|
|
<figure data-uk-lightbox="animation: slide" class="{{ include.class }}">
|
|
<a class="uk-inline" href="{% if include.img contains 'http' %}{{ include.img }}{% else %}{{ site.uploads | absolute_url }}{{ include.img }}{% endif %}"{% if include.caption %} caption="{{ include.caption }}"{% endif %}>
|
|
<img src="{% if include.img contains 'http' %}{{ include.img }}{% else %}{{ site.uploads | absolute_url }}{{ include.img }}{% endif %}"{% if include.alt %} alt="{{ include.alt }}"{% endif %}>
|
|
<div class="uk-position-center">
|
|
<span data-uk-overlay-icon></span>
|
|
</div>
|
|
</a>
|
|
{% if include.caption %}<figcaption data-uk-grid class="uk-flex-right"><span class="uk-width-auto">{{ include.caption }}</span></figcaption>{% endif %}
|
|
</figure>
|
|
{% else %}
|
|
<figure class="{{ include.class }}">
|
|
<img src="{% if include.img contains 'http' %}{{ include.img }}{% else %}{{ site.uploads | absolute_url }}{{ include.img }}{% endif %}"{% if include.alt %} alt="{{ include.alt }}"{% endif %}>
|
|
{% if include.caption %}<figcaption data-uk-grid class="uk-flex-right"><span class="uk-width-auto">{{ include.caption }}</span></figcaption>{% endif %}
|
|
</figure>
|
|
{% endif %}
|