blob: 1b960c42eaf2a8e27aba8b4b47a2ed72a2a8d548 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% 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")) -%}
{% if not float -%}
<figure>
{% else -%}
<figure style="float: {{ float }};">
{% endif -%}
<a href="/{{ url }}">
<img src="{{ image.url }}" alt="{{ alt }}" />
</a>
{% if caption -%}
<figcaption class="smaller">{{ caption | markdown(inline=true) | safe }}</figcaption>
{% endif -%}
</figure>
|