summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/img.html
diff options
context:
space:
mode:
authorSerghei Iakovlev <egrep@protonmail.ch>2022-05-28 16:29:00 +0200
committerSerghei Iakovlev <egrep@protonmail.ch>2022-05-28 16:29:00 +0200
commitfb5b8ef00b74af2f2df9fe77937165eb04d18118 (patch)
treed9d5509cbabb3d96a9585b169c584ade48ce04d6 /layouts/shortcodes/img.html
parent6b0be385ffa2f020b8dbeab13670194a1986a52b (diff)
downloadgohugo-theme-ed-fb5b8ef00b74af2f2df9fe77937165eb04d18118.tar.gz
Provide an ability to use hreflang attribute in raw links
Diffstat (limited to 'layouts/shortcodes/img.html')
-rw-r--r--layouts/shortcodes/img.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/layouts/shortcodes/img.html b/layouts/shortcodes/img.html
index 3d2b03f..4978358 100644
--- a/layouts/shortcodes/img.html
+++ b/layouts/shortcodes/img.html
@@ -1 +1,5 @@
-<img src="{{ .Get "src" }}" {{- with .Get "alt" }} alt="{{.}}"{{ end }} {{- with .Get "width" }} width="{{.}}"{{ end }} {{- with .Get "height" }} height="{{.}}"{{ end }} {{- with .Get "class" }} class="{{.}}"{{ end }}>
+<img src="{{ .Get "src" }}"
+ {{- with .Get "alt" }} alt="{{ . }}"{{ end }}
+ {{- with .Get "width" }} width="{{ . }}"{{ end }}
+ {{- with .Get "height" }} height="{{ . }}"{{ end }}
+ {{- with .Get "class" }} class="{{ . }}"{{ end }}>