Welcome to mirror list, hosted at ThFree Co, Russian Federation.

image.html « plugin « partials « layouts - github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1143b61c2d3b762ae815216e33bed3c53a03b232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{- $src := .Src -}}
{{- with dict "Path" .Src "Resources" .Resources | partial "function/resource.html" -}}
    {{- $src = .RelPermalink -}}
{{- end -}}

{{- $alt := .Alt | default $src -}}

{{- if .Linked -}}
    <a target="_blank" href="{{ .Src | safeURL }}" title="{{ .Title | default $alt }}" {{ with .Rel }} rel="{{ . }}"{{ end }}>
        <img loading="lazy" decoding="async"
             {{ with .Class }}class="{{ . }}"{{ end }}
             src="{{ .Src | safeURL }}"
            alt="{{ $alt }}"{{ with .Height }} height="{{ . }}"{{ end }}{{ with .Width }} width="{{ . }}"{{ end }}
        />
    </a>
{{- else -}}
    <img loading="lazy" decoding="async"
         {{ with .Class }}class="{{ . }}"{{ end }}
         src="{{ .Src | safeURL }}"
         alt="{{ $alt }}"
         title="{{ .Title | default $alt }}"{{ with .Height }} height="{{ . }}"{{ end }}{{ with .Width }} width="{{ . }}"{{ end }}
    />
{{- end -}}