webseite/layouts/shortcodes/image.html
Jannik Menzel 71aca4ea14
Some checks failed
publish / publish (push) Has been cancelled
added images and image preprocessing
2025-06-26 14:10:36 +02:00

15 lines
No EOL
398 B
HTML

{{ $src := .Get "src" }}
{{ $alt := .Get "alt" | default "" }}
{{ $img := resources.Get $src }}
{{ if not $img }}
{{ errorf "Bild '%s' nicht gefunden. Achte darauf, dass es in /assets/ liegt." $src }}
{{ end }}
{{ $resized := $img.Resize "1000x" }}
<img
src="{{ $resized.RelPermalink }}"
alt="{{ $alt }}"
loading="lazy"
style="max-width: 100%; height: auto;">