mirror of https://github.com/escalate/hugo-split-theme.git

Felix Boerner
22.24.2022 bc49ceb2cc29d4979906a3a0b82e65da131a51a1
style: add doublequotes for target param
1 files modified
2 ■■■ changed files
layouts/partials/links.html 2 ●●● patch | view | raw | blame | history
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>