blob: ff6869dd48d262ce92caded8cb508c0efbf34248 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{% set url = page.path ~ path | trim_start_matches(pat="/") -%}
{% set image = resize_image(path=url, width=width | default(value=500), op="fit_width", format=format | default(value="jpg")) -%}
<figure>
<a href="/{{ url }}">
<img src="{{ image.url }}" alt="{{ alt }}" />
</a>
{% if caption -%}
<figcaption class="smaller">{{ caption | markdown(inline=true) | safe }}</figcaption>
{% endif -%}
</figure>
|