mirror of https://github.com/jpanther/congo.git
fix: remove redundant tags
parent
d225da3941
commit
1b7361c50d
|
@ -81,66 +81,64 @@
|
||||||
type="image/webp"
|
type="image/webp"
|
||||||
/>
|
/>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ with $img }}
|
{{ $orientation := 1 }}
|
||||||
{{ $orientation := 1 }}
|
{{ with .Exif }}
|
||||||
{{ with .Exif }}
|
{{ $orientation = .Tags.Orientation }}
|
||||||
{{ $orientation = .Tags.Orientation }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ if eq $orientation 1 }}
|
||||||
{{ if eq $orientation 1 }}
|
<img
|
||||||
<img
|
src="{{ .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 }}"
|
src="{{ .RelPermalink }}"
|
||||||
width="{{ $width }}"
|
{{ else }}
|
||||||
height="{{ $height }}"
|
srcset="
|
||||||
{{ with $class }} class="{{ . }}" {{ end }}
|
{{- (.Resize "330x").RelPermalink }} 330w,
|
||||||
{{ with $alt }} alt="{{ . }}" {{ end }}
|
{{- (.Resize "660x").RelPermalink }} 660w
|
||||||
{{ with $lazy }} loading="lazy" decoding="async" {{ end }}
|
{{ if gt .Width 1024 }}
|
||||||
{{ if lt .Width 660 }}
|
,{{ (.Resize "1024x").RelPermalink }} 1024w
|
||||||
src="{{ .RelPermalink }}"
|
|
||||||
{{ else }}
|
{{ else }}
|
||||||
srcset="
|
,{{ .RelPermalink }} {{ .Width }}w
|
||||||
{{- (.Resize "330x").RelPermalink }} 330w,
|
|
||||||
{{- (.Resize "660x").RelPermalink }} 660w
|
|
||||||
{{ if gt .Width 1024 }}
|
|
||||||
,{{ (.Resize "1024x").RelPermalink }} 1024w
|
|
||||||
{{ else }}
|
|
||||||
,{{ .RelPermalink }} {{ .Width }}w
|
|
||||||
{{ end }}
|
|
||||||
{{ if gt .Width 1320 }}
|
|
||||||
,{{ (.Resize "1320x").RelPermalink }} 2x
|
|
||||||
{{ else }}
|
|
||||||
,{{ .RelPermalink }} {{ .Width }}w
|
|
||||||
{{ end }}"
|
|
||||||
src="{{ (.Resize "660x").RelPermalink }}"
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
>
|
{{ if gt .Width 1320 }}
|
||||||
{{ else if (eq $orientation 8) }}
|
,{{ (.Resize "1320x").RelPermalink }} 2x
|
||||||
<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 }}
|
{{ else }}
|
||||||
srcset="
|
,{{ .RelPermalink }} {{ .Width }}w
|
||||||
{{- (.Resize "330x r90").RelPermalink }} 330w,
|
{{ end }}"
|
||||||
{{- (.Resize "660x r90").RelPermalink }} 660w
|
src="{{ (.Resize "660x").RelPermalink }}"
|
||||||
{{ 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 }}
|
||||||
|
>
|
||||||
|
{{ 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>
|
</picture>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in New Issue