mirror of https://github.com/lxndrblz/anatole.git

Harsh Shandilya
22.10.2020 201aefa639fe60f1d641d50d5fa5b4070590ac00
layouts: set aria-label correctly for screen readers to work

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
1 files modified
4 ■■■■ changed files
layouts/partials/sidebar.html 4 ●●●● patch | view | raw | blame | history
layouts/partials/sidebar.html
@@ -10,8 +10,8 @@
    </div>
    <ul class="social-links">
        {{ range $item := .Site.Params.socialIcons }}
        <a href="{{ $item.url }}" rel="me" >
          <i class="fa fa-2x {{ $item.icon }}" aria-hidden="true" title="{{ $item.title }}"></i>
        <a href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}">
          <i class="fa fa-2x {{ $item.icon }}" aria-hidden="true"></i>
        </a>
        {{ end }}
    </ul>