zola/templates/shortcodes/images_fit.html
2022-10-31 11:39:53 +01:00

7 lines
315 B
HTML

{% set image1 = resize_image(path=path1, width=500, op="fit_width") %}
{% set image2 = resize_image(path=path2, width=500, op="fit_width") %}
<div style="display: flex; flex-direction: row; justify-content: center">
<img src="{{ image1.url }}" style="padding-right: 10px"/>
<img src="{{ image2.url }}"/>
</div>