diff options
author | amzrk2 | 2020-07-24 09:17:09 +0800 |
---|---|---|
committer | amzrk2 | 2020-07-24 09:17:09 +0800 |
commit | 9897eff5d4fe78e26efd5e362cd32672575fae14 (patch) | |
tree | b0ecc5483044a81e8185a2606ded2084ea6b0db7 /layouts/shortcodes/img-lazy.html | |
parent | 3483f357ac417d7418461c01a5ab1cfc91816431 (diff) | |
download | hugo-theme-fuji-9897eff5d4fe78e26efd5e362cd32672575fae14.tar.gz hugo-theme-fuji-9897eff5d4fe78e26efd5e362cd32672575fae14.tar.bz2 hugo-theme-fuji-9897eff5d4fe78e26efd5e362cd32672575fae14.zip |
Fix image relative link issue
Diffstat (limited to 'layouts/shortcodes/img-lazy.html')
-rw-r--r-- | layouts/shortcodes/img-lazy.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/shortcodes/img-lazy.html b/layouts/shortcodes/img-lazy.html index a8927a5..bac255b 100644 --- a/layouts/shortcodes/img-lazy.html +++ b/layouts/shortcodes/img-lazy.html @@ -2,21 +2,21 @@ <img class="lazyload img-zoomable" src="{{ .Site.Params.lazyPlaceholder | relURL }}" - data-src="{{ index .Params 1 }}" + data-src="{{ index .Params 1 | relURL | safeURL }}" alt="{{ index .Params 0 }}" /> {{ else if len .Params | eq 3 }}{{ if eq (index .Params 0) "row" }} <img class="lazyload img-zoomable" src="{{ .Site.Params.lazyPlaceholderRow | relURL }}" - data-src="{{ index .Params 2 }}" + data-src="{{ index .Params 2 | relURL | safeURL }}" alt="{{ index .Params 1 }}" /> {{ else if eq (index .Params 0) "col" }} <img class="lazyload img-zoomable" src="{{ .Site.Params.lazyPlaceholderCol | relURL }}" - data-src="{{ index .Params 2 }}" + data-src="{{ index .Params 2 | relURL | safeURL }}" alt="{{ index .Params 1 }}" /> {{ else }}{{ end }}{{ else }}{{ end }} |