Skip to content

Commit

Permalink
fix: show mouseover text for social links (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswpark authored Nov 8, 2021
1 parent e1817fe commit d8bfafc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/partials/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h3 title=""><a href="{{ .Site.BaseURL | relLangURL }}">{{ .Site.Params.Title }}
<ul class="social-links">
{{ range $item := .Site.Params.socialIcons }}
<li>
<a href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}">
<a href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}" title="{{ $item.title }}">
<i class="{{ $item.icon }} fa-2x" aria-hidden="true"></i>
</a>
</li>
Expand Down

0 comments on commit d8bfafc

Please sign in to comment.