redstrate.com/themes/red/layouts/partials/header.html

11 lines
390 B
HTML
Raw Permalink Normal View History

2023-04-13 17:19:53 -04:00
{{ with resources.Get .Site.Params.profile_picture }}
2025-01-03 10:34:20 -05:00
<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>
2023-02-23 17:39:20 -05:00
{{ end }}
<h1>{{ .Site.Title }}</h1>