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 }}
|
2022-08-03 13:38:47 -04:00
|
|
|
<h1>{{ .Site.Title }}</h1>
|