LoveIt/layouts/partials/plugin/link.html

10 lines
461 B
HTML
Raw Normal View History

{{- $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 -}}
2020-02-21 16:42:35 +01:00
{{- partial "plugin/icon.html" . -}}
{{- end -}}
{{- with .Content -}}
2020-02-21 16:42:35 +01:00
{{- . | safeHTML -}}
{{- end -}}
2022-05-03 10:22:17 +02:00
</a>