aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/author-picture.html
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2022-12-26 17:01:51 -0500
committertdro <tdro@noreply.example.com>2022-12-27 20:46:15 -0500
commitd27b1096ac6f3f9d5880ecbd97097bfceecefa13 (patch)
tree70a35f7b44121fa0b4cbc9b8a45b62cb8b368fe4 /themes/default/layouts/partials/author-picture.html
parent6bed014c0f3b70bbf8739ea2a48520dd154fa091 (diff)
downloadcanory-d27b1096ac6f3f9d5880ecbd97097bfceecefa13.tar.gz
canory-d27b1096ac6f3f9d5880ecbd97097bfceecefa13.tar.bz2
canory-d27b1096ac6f3f9d5880ecbd97097bfceecefa13.zip
themes/default/layouts/partials: Mix down image metadata and expose author.json
Relegate to section and reduce the rate of multiplicative image transformations
Diffstat (limited to 'themes/default/layouts/partials/author-picture.html')
-rw-r--r--themes/default/layouts/partials/author-picture.html43
1 files changed, 22 insertions, 21 deletions
diff --git a/themes/default/layouts/partials/author-picture.html b/themes/default/layouts/partials/author-picture.html
index d2c3c6f..05d5cf1 100644
--- a/themes/default/layouts/partials/author-picture.html
+++ b/themes/default/layouts/partials/author-picture.html
@@ -1,32 +1,33 @@
{{- $author := partial "function-authors-data.html" . -}}
-{{- $profile := $author.picture.profile -}}
-{{- $file := not (urls.Parse $profile).Host -}}
+{{- $metadata := print "public/" $author.user "/author.json" -}}
-{{- if $file -}}
- {{- $profile = print $author.user "/" $profile -}}
-{{- end -}}
-
-{{- $image := partial "function-caches-images.html"
- (dict
- "Source" $profile
- "Fit" "160x160"
- "Target" (print (partial "function-paths.html" "media") "/" $author.user "/")
- "Copy" (print (partial "function-paths.html" "media") "/" $author.user "/" (path.Base $profile))
- "AlternateCopy" (print (partial "function-paths.html" "media") "/" $author.user "/" (path.BaseName $profile) ".webp")
- )
--}}
-
-{{- $width := $image.Width -}}
-{{- $height := $image.Height -}}
-{{- $source := $image.RelPermalink -}}
{{- $alternate := $author.name -}}
-{{- $sourceset := $image.AltRelPermalink -}}
+{{- $width := "" -}}
+{{- $height := "" -}}
+{{- $source := "" -}}
+{{- $sourceset := "" -}}
{{- with .Params.feed.favicon -}}
+ {{- $alternate = $.Params.feed.name -}}
{{- $width = "64" -}}
{{- $height = "64" -}}
{{- $source = $.Params.feed.favicon -}}
- {{- $alternate = $.Params.feed.name -}}
+ {{- $sourceset = "" -}}
+{{- else -}}
+ {{- $source = print "/" (partial "function-paths.html" "media") "/" $author.user "/" $author.user "-profile" (path.Ext $author.picture.profile) -}}
+ {{- $sourceset = print "/" (partial "function-paths.html" "media") "/" $author.user "/" $author.user "-profile.webp" -}}
+ {{- with $metadata := resources.Get $metadata -}}
+ {{- $metadata = $metadata.Content | transform.Unmarshal -}}
+ {{- $width = $metadata.picture.profileWidth -}}
+ {{- $height = $metadata.picture.profileHeight -}}
+ {{- else -}}
+ {{- $source = "/data/media/404.png" -}}
+ {{- $sourceset = "" -}}
+ {{- end -}}
+{{- end -}}
+
+{{- if not (path.Ext $author.picture.profile) -}}
+ {{- $source = "/data/media/404.png" -}}
{{- $sourceset = "" -}}
{{- end -}}