diff options
| author | Alexandre Vicenzi <vicenzi.alexandre@gmail.com> | 2020-06-15 19:52:15 +0200 |
|---|---|---|
| committer | Alexandre Vicenzi <vicenzi.alexandre@gmail.com> | 2020-06-15 19:52:15 +0200 |
| commit | 01322efeb2c8b0521d66de459cbe3b9d71e1259e (patch) | |
| tree | 1ad7e7233a85bfbaa08f1ac0d4368f3321fe841a /layouts/partials/sidebar.html | |
| parent | ac7ec7386b36d5798a843dd5262200ec9b58109b (diff) | |
Cleanup and Fixes
Diffstat (limited to 'layouts/partials/sidebar.html')
| -rw-r--r-- | layouts/partials/sidebar.html | 4 |
1 files changed, 2 insertions, 2 deletions
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 }} |
