gohugo-theme-bree/layouts/shortcodes/link.html
2022-07-16 19:03:32 +02:00

8 lines
354 B
HTML

<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 -}}
{{- safeHTML "</a>" -}}