21 lines
697 B
HTML
21 lines
697 B
HTML
<!-- prettier-ignore -->
|
|
{{ $src := .src }}
|
|
{{ $alt := .alt | default "" }}
|
|
{{ $width := or .width "800x800" }}
|
|
|
|
<figure class="blog-img-container">
|
|
{{ with .page.Resources.GetMatch $src }}
|
|
{{ $resized := .Fit $width }}
|
|
<img src="{{ $resized.RelPermalink }}" alt="{{ $alt }}" loading="lazy" class="blog-img" />
|
|
{{ else }}
|
|
{{ with resources.Get $src }}
|
|
{{ $resized := .Fit $width }}
|
|
<img src="{{ $resized.RelPermalink }}" alt="{{ $alt }}" loading="lazy" class="blog-img" />
|
|
{{ else }}
|
|
<img src="{{ $src }}" alt="{{ $alt }}" loading="lazy" class="blog-img" />
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ if $alt }}
|
|
<figcaption class="blog-img-caption">{{ $alt }}</figcaption>
|
|
{{ end }}
|
|
</figure>
|