redstrate.com/themes/red/layouts/partials/header.html
2025-01-03 10:34:20 -05:00

10 lines
390 B
HTML

{{ with resources.Get .Site.Params.profile_picture }}
<picture>
{{ $avif_path := replace . ".png" ".avif "}}
{{ with resources.Get (strings.TrimSpace $avif_path) }}
<source srcset="{{ .RelPermalink }}" type="image/avif">
{{ end }}
<img alt="Profile Picture" src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}">
</picture>
{{ end }}
<h1>{{ .Site.Title }}</h1>