2023-12-08 23:10:41 +00:00
|
|
|
{{- $src := "" -}}
|
2022-06-09 15:34:49 +00:00
|
|
|
{{- if in site.BaseURL ".onion" -}}
|
2023-12-08 23:10:41 +00:00
|
|
|
{{- $favicon := resources.Get "/favicon.png" -}}
|
|
|
|
{{- $favicon_base64 := $favicon.Content | base64Encode -}}
|
|
|
|
{{- $src = printf "data:image/png;base64,%s" $favicon_base64 -}}
|
2022-03-11 05:27:40 +00:00
|
|
|
{{- else -}}
|
2023-12-08 23:10:41 +00:00
|
|
|
{{- with (partialCached "cache-bust.html" "/favicon.svg" "/favicon.svg") -}}
|
|
|
|
{{- $src = .Permalink -}}
|
|
|
|
{{- end -}}{{- end -}}
|
|
|
|
<img itemprop="image" width="16" height="16" alt="" src="{{ $src }}" class="u-photo photo" />
|