Removing nofollow where it's not needed.

This commit is contained in:
Adsooi 2021-08-10 22:58:31 +02:00
parent 3b2c0104c5
commit a02e94cfbd
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
4 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,6 @@
{{ range . }}
<div role="button" class="primary">
<a href="{{ .URL | safeURL }}" role="button" title="{{ .Title }}" rel="nofollow noreferrer" {{ if .NewTab }}target="_blank"{{ end }}>
<a href="{{ .URL | safeURL }}" role="button" title="{{ .Title }}" rel="{{ if .NewTab }}nofollow {{ end }}noreferrer" {{ if .NewTab }}target="_blank"{{ end }}>
<i class="icon-{{ lower .Icon }} icon-as-text" alt="{{ .Icon }}"></i>{{ .Title }}
</a>
</div>