Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- {{ $src := .Get "src" }}
- {{ $lqipsrc := .Get "lqipsrc" }}
- {{ $caption := .Get "caption" }}
- {{ $link := .Get "link" }}
- {{ $linktarget := .Get "linktarget" }}
- {{ $attr := .Get "attr" }}
- {{ $attrlink := .Get "attrlink" }}
- {{ $alt := .Get "alt" }}
- {{ $title := .Get "title" }}
- {{ $class := .Get "class" }}
- <figure{{ with $class }} class="{{ . }}"{{ end }}>
- {{ with $link }}<a href="{{ . }}"{{ if $linktarget }} target="{{ $linktarget }}"{{ end }}{{ if eq $linktarget "_blank" }} rel="external noopener noreferrer"{{ end }}>{{ end }}
- {{ if $lqipsrc }}
- <img class="lazyload blur-up" src="{{ $lqipsrc }}" data-src="{{ $src }}" {{ if or $alt $caption }}alt="{{ with $alt }}{{ . }}{{ else }}{{ $caption }}{{ end }}"{{ end }} />
- {{ else }}
- <img class="lazyload" data-src="{{ $src }}" {{ if or $alt $caption }}alt="{{ with $alt }}{{ . }}{{ else }}{{ $caption }}{{ end }}"{{ end }} />
- {{ end }}
- {{ if $link }}</a>{{ end }}
- {{ if or (or $title $caption) $attr }}
- <figcaption>{{ if isset .Params "title" }}
- <header><b>{{ $title }}</b></header>{{ end }}
- {{ if or $caption $attr }}
- <small>{{ $caption }}
- {{ with $attrlink }}<a href="{{ . }}"> {{ end }}
- {{ $attr }}
- {{ if $attrlink }}</a> {{ end }}
- </small>{{ end }}
- </figcaption>
- {{ end }}
- </figure>
|