summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/link.html
blob: 3778d83cf1475b41abb917e41da22f8d6de55bdd (plain)
1
2
3
4
5
6
7
8
<a href="{{ .Get "src" | absURL }}"
   {{- with .Get "hreflang" }} hreflang="{{ . }}"{{ end }}
   {{- with .Get "title" }} title="{{ . }}"{{ end }}
   {{- with .Get "class" }} class="{{ . }}"{{ end }}
   {{- with .Get "target" }} target="{{ . }}"{{ end }}
   {{- with .Get "rel" }} rel="{{ . }}"{{ end }}>
   {{- .Inner -}}
</a>