From ebaff0c72c70624635de13ab7afe4f5f38caed18 Mon Sep 17 00:00:00 2001 From: d3vyce Date: Sun, 18 Feb 2024 17:40:53 +0100 Subject: [PATCH] feat: image process --- layouts/_default/_markup/render-image.html | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 layouts/_default/_markup/render-image.html diff --git a/layouts/_default/_markup/render-image.html b/layouts/_default/_markup/render-image.html new file mode 100644 index 0000000..9cc7910 --- /dev/null +++ b/layouts/_default/_markup/render-image.html @@ -0,0 +1,39 @@ + + {{- $destination := .Destination -}} + {{- $extension := path.Ext $destination -}} + {{- $resources := .Page.Resources -}} + + {{- $avifPath:= replace $destination $extension ".avif" -}} + {{- $avifPathDark:= replace $destination $extension "-dark.avif" -}} + {{- $webpPath:= replace $destination $extension ".webp" -}} + {{- $webpPathDark:= replace $destination $extension "-dark.webp" -}} + {{- $pathDark:= replace $destination $extension (print "-dark" $extension) -}} + {{- $altText := .Text -}} + + {{- with $resources.GetMatch $avifPath -}} + + {{- end -}} + {{- with $resources.GetMatch $avifPathDark -}} + + {{- end -}} + {{- with $resources.GetMatch $webpPath -}} + + {{- end -}} + {{- with $resources.GetMatch $webpPathDark -}} + + {{- end -}} + {{- with $resources.GetMatch $pathDark -}} + + {{- end -}} + + {{- with $resources.GetMatch $destination -}} + {{- $altText -}} + {{- end -}} + \ No newline at end of file