mirror of https://github.com/luizdepra/hugo-coder.git

Luiz F. A. de Prá
20.21.2018 1647f2f11206c7ff5d1e0445e1da18b121582f17
Improve icons accessibility (#127)

1 files modified
10 ■■■■ changed files
layouts/partials/home.html 10 ●●●● patch | view | raw | blame | history
layouts/partials/home.html
@@ -9,9 +9,15 @@
    <ul>
      {{ range sort .}}
        {{ if .icon }}
          <li><a href="{{ .url }}"><i class="{{ .icon }}"></i></a></li>
          <li>
            <a href="{{ .url }}" aria-label="{{ .name }}">
              <i class="{{ .icon }}" aria-hidden></i>
            </a>
          </li>
        {{ else }}
          <li><a href="{{ .url }}">{{ .name }}</a></li>
          <li>
            <a href="{{ .url }}" aria-label="{{ .name }}">{{ .name }}</a>
          </li>
        {{ end }}
      {{ end }}
    </ul>