summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Boerner <ich@felix-boerner.de>2022-09-22 20:24:31 +0200
committerFelix Börner <github@felix-boerner.de>2022-09-22 20:28:08 +0200
commitbc49ceb2cc29d4979906a3a0b82e65da131a51a1 (patch)
tree83bc4e8c2ab5b329a6adfdcc3f733a67d5a72ce6
parentf6f753813a39a1bab0ae75894e609538a6610943 (diff)
style: add doublequotes for target param
-rw-r--r--layouts/partials/links.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/links.html b/layouts/partials/links.html
index 3a8d692..3313bc9 100644
--- a/layouts/partials/links.html
+++ b/layouts/partials/links.html
@@ -8,7 +8,7 @@
<h3>{{ $list.heading }}</h3>
<ul>
{{ range $list.link }}
- <li><a href="{{ .url | safeURL }}" title="{{ .text }}" target={{ cond (.new_tab | default false) "_blank" "_self"}}>{{ .text }}</a></li>
+ <li><a href="{{ .url | safeURL }}" title="{{ .text }}" target="{{ cond (.new_tab | default false) "_blank" "_self" }}">{{ .text }}</a></li>
{{ end }}
</ul>
</div>