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

image.html « shortcodes « layouts - github.com/your-identity/hugo-theme-dimension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 361197620c78981ba1b874b37c6d09d3807dd62e (plain)
1
2
3
4
5
6
7
8
{{ if .IsNamedParams }}
    <span class="image {{ .Get "set" }}">
        <img src="{{ .Get "src" }}" alt="{{ .Get "alt" }}" />
    </span>
{{ else }}
    <span class="image {{ .Get 1 }}"><img src="{{ .Get 0 }}" alt="" /></span>
{{ end }}