onders.org_zola_theme/templates/shortcodes/modal.html

20 lines
472 B
HTML
Raw Permalink Normal View History

2023-02-06 12:20:18 +01:00
{% 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>
2023-02-06 12:20:18 +01:00
<a href="#{{ path }}">
<img class="modal-thumbnail" src="{{ thumb.url }}"/>
2023-02-06 12:20:18 +01:00
</a>
<div class="modal" id="{{ path }}">
2023-02-06 12:20:18 +01:00
<a href="#" class="close">
<span class="spacer"></span>
<img src="{{ path }}" />
</a>
</div>
</div>