theme: modularize render image hook #373

This commit is contained in:
Sören Weber 2022-11-06 10:03:18 +01:00
parent 4934d58624
commit 54df05b91d
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D
2 changed files with 21 additions and 11 deletions

View file

@ -1,11 +1,6 @@
{{- $dest_url := urls.Parse .Destination }}
{{- $dest_path := $dest_url.Path }}
{{- $image := .Page.Resources.GetMatch $dest_path }}
{{- $url := .Destination | relURL }}
{{- if $image }}
{{- $url = $image.RelPermalink }}
{{- if $dest_url.RawQuery }}
{{- $url = printf "%s?%s" $url $dest_url.RawQuery }}
{{- end }}
{{- end }}
<img src="{{ $url }}" alt="{{ .Text }}"{{ with .Title}} title="{{ . }}"{{ end }}>
{{- partial "shortcodes/image.html" (dict
"context" .Page
"url" .Destination
"title" .Title
"alt" .Text
) }}

View file

@ -0,0 +1,15 @@
{{- $context := .context }}
{{- $url := .url }}
{{- $title := .title }}
{{- $alt := .alt }}
{{- $dest_url := urls.Parse $url }}
{{- $dest_path := $dest_url.Path }}
{{- $image := $context.Resources.GetMatch $dest_path }}
{{- $url = $url | relURL }}
{{- if $image }}
{{- $url = $image.RelPermalink }}
{{- if $dest_url.RawQuery }}
{{- $url = printf "%s?%s" $url $dest_url.RawQuery }}
{{- end }}
{{- end }}
<img src="{{ $url }}" alt="{{ $alt }}"{{ with $title}} title="{{ . }}"{{ end }}>