Cleanup and Fixes

This commit is contained in:
Alexandre Vicenzi 2020-06-15 19:52:15 +02:00
parent ac7ec7386b
commit 01322efeb2
11 changed files with 15 additions and 53 deletions

View file

@ -1,14 +1,13 @@
<footer>
<div>
&copy; {{ $.Site.Params.Copyright }} {{ now.Format "2006"}}
·
{{ with $.Site.Params.License }}
<a href="{{ $.Site.Params.licenseURL }}"
target="_blank">{{ . | safeHTML }}</a>
&middot; <a href="{{ $.Site.Params.licenseURL }}" target="_blank">{{ . | safeHTML }}</a>
{{end}}
{{ with $.Site.Params.BuiltWith }}
·
Build with <a href="https://gohugo.io/" target="_blank">Hugo</a> & <a href="https://themes.gohugo.io/soho/" target="_blank">Soho</a> theme
&middot; Build with <a href="https://gohugo.io/" target="_blank">Hugo</a> & <a href="https://themes.gohugo.io/soho/" target="_blank">Soho</a> theme
{{end}}
</div>
</footer>

View file

@ -27,7 +27,7 @@
</li>
{{ range .Site.Menus.main -}}
<li>
<a href="{{.URL}}"> {{ .Name }} </a>
<a href="{{ .URL }}"> {{ .Name }} </a>
</li>
{{- end }}
</ul>
@ -35,7 +35,7 @@
<section class="social-icons">
{{ range $item := .Site.Params.socialIcons }}
<a href="{{ $item.url }}" rel="me" title="{{ $item.title }}">
<a href="{{ $item.url }}" rel="me" title="{{ $item.title }}" target="_blank">
<i class="fab {{ $item.icon }}" aria-hidden="true"></i>
</a>
{{ end }}