mirror of
https://github.com/SebastianStork/kita.git
synced 2026-01-21 12:11:35 +01:00
11 lines
471 B
HTML
11 lines
471 B
HTML
<div class="not-prose flex flex-wrap gap-2">
|
|
{% for asset in page.assets -%}<!---->
|
|
{% if asset is matching("[.](jpg|png)$") %}<!---->
|
|
{% set image = resize_image(path=asset, width=240, height=180) %}<!---->
|
|
{% set asset_name = asset | split(pat="/") | slice(start=-1) | join(sep="/") %}
|
|
<a href="{{ get_url(path=page.path ~ asset_name) }}" target="_blank">
|
|
<img class="rounded-lg" src="{{ image.url }}" />
|
|
</a>
|
|
{% endif %}<!---->
|
|
{% endfor %}
|
|
</div>
|