fix: add image fix

pull/726/head
Wen Junhua 2023-11-27 23:42:08 +08:00
parent dbf421848f
commit d225da3941
1 changed files with 35 additions and 0 deletions

View File

@ -81,6 +81,12 @@
type="image/webp"
/>
{{ end }}
{{ with $img }}
{{ $orientation := 1 }}
{{ with .Exif }}
{{ $orientation = .Tags.Orientation }}
{{ end }}
{{ if eq $orientation 1 }}
<img
src="{{ .RelPermalink }}"
width="{{ $width }}"
@ -107,6 +113,35 @@
src="{{ (.Resize "660x").RelPermalink }}"
{{ end }}
>
{{ else if (eq $orientation 8) }}
<img
src="{{ (.Resize "r90").RelPermalink }}"
width="{{ $width }}"
height="{{ $height }}"
{{ with $class }} class="{{ . }}" {{ end }}
{{ with $alt }} alt="{{ . }}" {{ end }}
{{ with $lazy }} loading="lazy" decoding="async" {{ end }}
{{ if lt .Width 660 }}
src="{{ .RelPermalink }}"
{{ else }}
srcset="
{{- (.Resize "330x r90").RelPermalink }} 330w,
{{- (.Resize "660x r90").RelPermalink }} 660w
{{ if gt .Width 1024 }}
,{{ (.Resize "1024x r90").RelPermalink }} 1024w
{{ else }}
,{{ .RelPermalink }} {{ .Width }}w
{{ end }}
{{ if gt .Width 1320 }}
,{{ (.Resize "1320x r90").RelPermalink }} 2x
{{ else }}
,{{ .RelPermalink }} {{ .Width }}w
{{ end }}"
src="{{ (.Resize "660x r90").RelPermalink }}"
{{ end }}
>
{{ end }}
{{ end }}
</picture>
{{ end }}
{{ end }}