m2.nz/themes/LoveIt/layouts/partials/plugin/a.html

9 lines
460 B
HTML
Raw Normal View History

2022-05-08 06:47:31 +00:00
{{- $rel := "" -}}
2024-04-07 02:32:03 +00: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 }}>
2022-05-08 06:47:31 +00:00
{{- with .Icon -}}
{{- partial "plugin/icon.html" . -}}
{{- end -}}
{{- with .Content -}}
{{- . | safeHTML -}}
{{- end -}}
2024-04-07 02:32:03 +00:00
</a>