{# Image shortcode for use inside Markdown content. Forwards to the shared image macro so we have one source of truth. Usage in markdown: {{ img(src="team/Olli.jpg", width=200, alt="Dr. Riemann") }} # resized {{ img(src="services/HV.jpg", alt="HV", class="float-right") }} # raw, CSS-sized #} {%- import "macros/image.html" as image -%} {{ image::render(src=src, width=width | default(value=0), alt=alt | default(value=""), class=class | default(value="")) }}