summaryrefslogtreecommitdiff
path: root/themes/LoveIt/layouts/partials/plugin/a.html
blob: 8dccaa700fc1f7cfdfc9fb60974630fb5497279d (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 noreffer " }} target="_blank"{{ end }} rel="{{ $rel }}{{ with .Rel }}{{ . }}{{ end }}"{{ with .Class }} class="{{ . }}"{{ end }}>
    {{- with .Icon -}}
        {{- partial "plugin/icon.html" . -}}
    {{- end -}}
    {{- with .Content -}}
        {{- . | safeHTML -}}
    {{- end -}}
</a>