forked from finga/onders.org_zola_theme
19 lines
488 B
HTML
19 lines
488 B
HTML
{% if section %}
|
|
{% set full_path = section.path ~ path %}
|
|
{% endif %}
|
|
{% if page %}
|
|
{% set full_path = page.path ~ path %}
|
|
{% endif %}
|
|
{% set thumb = resize_image(path=full_path, width=400, height=400, op="fit") %}
|
|
|
|
<div class="item">
|
|
<a href="#{{ path }}">
|
|
<img src="{{ thumb.url }}"/>
|
|
</a>
|
|
<div class="lightbox image has-text-centered" id="{{ path }}">
|
|
<a href="#" class="close">
|
|
<span class="spacer"></span>
|
|
<img src="{{ path }}" />
|
|
</a>
|
|
</div>
|
|
</div>
|