summaryrefslogtreecommitdiff
path: root/layouts/index.html
diff options
context:
space:
mode:
authorNicholas Johnson <mail@nicholasjohnson.ch>2024-11-08 00:00:00 +0000
committerNicholas Johnson <mail@nicholasjohnson.ch>2024-11-08 00:00:00 +0000
commit033724cd709402e1da184e60da2da3031d8e119990129baa7ced9f957904e615 (patch)
tree4df486cfca09184234672c36089a34d467795640f731db850bed3ef91acfcea3 /layouts/index.html
parent3b77b61bf662efe71c7f75e73a2d6fae0e3c8c8b74b05f036809b0913785a432 (diff)
downloadhugo-theme-journal-033724cd709402e1da184e60da2da3031d8e119990129baa7ced9f957904e615.tar.gz
hugo-theme-journal-033724cd709402e1da184e60da2da3031d8e119990129baa7ced9f957904e615.zip
Stop safeHTML overuse in emojis for readability
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/index.html b/layouts/index.html
index d15d932..398a770 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -7,7 +7,7 @@
<nav>
<ul class="list">
{{- range .Site.Menus.main }}
- <li class="list__item">{{ emojify ":link:" | safeHTML }} <a class="link" href="{{ .URL }}" rel="noreferrer">{{ .Name }}</a></li>
+ <li class="list__item">{{ emojify ":link:" }} <a class="link" href="{{ .URL }}" rel="noreferrer">{{ .Name }}</a></li>
{{- end }}
</ul>
</nav>