LoveIt/layouts/partials/plugin/a.html

9 lines
460 B
HTML
Raw Normal View History

{{- $rel := "" -}}
2022-06-19 17:06:34 +02:00
<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 -}}
</a>