2022-05-05 16:00:44 +02:00

11 lines
282 B
HTML
Executable File

{% if settings.settings.light_mode %}
{% set pathstatic = ".." %}
{% else %}
{% set pathstatic = "." %}
{% endif %}
{% set image = Image(section.image) %}
{{ image.copy() }}
<section class="panorama">
<img src="{{ pathstatic }}/{{ image.generate_thumbnail("x800") }}">
</section>