open footer and sidebar external links in new tabs

This commit is contained in:
John Bowdre 2023-08-23 20:00:14 -05:00
parent b284940cfe
commit 1405bb4ba3
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
<ul class="aside__social-links"> <ul class="aside__social-links">
{{ range $item := .Site.Params.socialLinks }} {{ range $item := .Site.Params.socialLinks }}
<li> <li>
<a href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}" title="{{ $item.title }}"><i class="{{ $item.icon }}" aria-hidden="true"></i></a>&nbsp; <a target="_blank" href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}" title="{{ $item.title }}"><i class="{{ $item.icon }}" aria-hidden="true"></i></a>&nbsp;
</li> </li>
{{ end }} {{ end }}
</ul> </ul>

View file

@ -1,3 +1,3 @@
{{- partial "lang.html" . -}} {{- partial "lang.html" . -}}
<p class="copyright">{{ .Site.Copyright | markdownify }}</p> <p class="copyright">{{ .Site.Copyright | markdownify }}</p>
<p class="advertisement">Powered by <a href="https://gohugo.io/">hugo</a>, <a href="https://github.com/joeroe/risotto">risotto</a>, and <a href="https://www.netlify.com">netlify</a>. <a href="https://github.com/jbowdre/runtimeterror">View source</a>.</p> <p class="advertisement">Powered by <a target="_blank" href="https://gohugo.io/">hugo</a>, <a target="_blank" href="https://github.com/joeroe/risotto">risotto</a>, and <a target="_blank" href="https://www.netlify.com">netlify</a>. <a target="_blank" href="https://github.com/jbowdre/runtimeterror">View source</a>.</p>