10 lines
461 B
HTML
10 lines
461 B
HTML
|
{{- $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>
|