summaryrefslogtreecommitdiff
path: root/themes/CodeIT/layouts/partials/plugin/link.html
blob: 8e07a6cc10a576b824f92be37e69c336220a8a69 (plain)
1
2
3
4
5
6
7
8
9
{{- $rel := "" -}}
<a href="{{ .Destination | safeURL }}"{{ with .Title }} title="{{ . }}"{{ end }}{{ if (urls.Parse .Destination).Host | or .Newtab }}{{ $rel = "noopener noreferrer" }} target="_blank"{{ end }} rel="{{ $rel }}{{ with .Rel }} {{ . }}{{ end }}"{{ with .Class }} class="{{ . }}"{{ end }}>
    {{- with .Icon -}}
        {{- partial "plugin/icon.html" . -}}
    {{- end -}}
    {{- with .Content -}}
        {{- . | safeHTML -}}
    {{- end -}}
</a>