blob: b3393820c41f5edcfbffe01d762712ae744d7ec5 (
plain) (
tree)
|
|
{% set url = page.path ~ path | trim_start_matches(pat="/") -%}
<figure>
<a href="/{{ url }}">
<img src="{{ resize_image(path=url, width=500, op="fit_width", format=format | default(value="jpg")) }}" alt="{{ alt }}" />
</a>
{% if caption -%}
<figcaption class="smaller">{{ caption | markdown(inline=true) | safe }}</figcaption>
{% endif -%}
</figure>
|