summaryrefslogtreecommitdiffstatshomepage
path: root/templates/shortcodes/img.html
blob: b3393820c41f5edcfbffe01d762712ae744d7ec5 (plain) (blame)
1
2
3
4
5
6
7
8
9
{% 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>