summaryrefslogtreecommitdiff
path: root/layouts/partials
diff options
context:
space:
mode:
authorAlexandre Vicenzi <vicenzi.alexandre@gmail.com>2020-06-15 19:52:15 +0200
committerAlexandre Vicenzi <vicenzi.alexandre@gmail.com>2020-06-15 19:52:15 +0200
commit01322efeb2c8b0521d66de459cbe3b9d71e1259e (patch)
tree1ad7e7233a85bfbaa08f1ac0d4368f3321fe841a /layouts/partials
parentac7ec7386b36d5798a843dd5262200ec9b58109b (diff)
Cleanup and Fixes
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/footer.html9
-rw-r--r--layouts/partials/sidebar.html4
2 files changed, 6 insertions, 7 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index cb0327c..354fbd9 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -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>
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
index 22ecbf5..5ce773f 100644
--- a/layouts/partials/sidebar.html
+++ b/layouts/partials/sidebar.html
@@ -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 }}