Add titles to links in footer

This commit is contained in:
squidfunk 2017-01-06 18:52:12 +01:00
parent 42d6525c50
commit 4d4e869f02
2 changed files with 7 additions and 5 deletions

View File

@ -45,9 +45,9 @@
</div> </div>
{% endif %} {% endif %}
powered by powered by
<a href="http://www.mkdocs.org">MkDocs</a> <a href="http://www.mkdocs.org" title="MkDocs">MkDocs</a>
and and
<a href="http://squidfunk.github.io/mkdocs-material/"> <a href="http://squidfunk.github.io/mkdocs-material/" title="Material for MkDocs">
Material for MkDocs</a> Material for MkDocs</a>
</div> </div>
{% block social %} {% block social %}

View File

@ -32,7 +32,8 @@
<!-- Link to previous page --> <!-- Link to previous page -->
{% if page.previous_page %} {% if page.previous_page %}
<a href="{{ page.previous_page.url }}" title="{{ page.previous_page.title }}" <a href="{{ page.previous_page.url }}"
title="{{ page.previous_page.title }}"
class="md-flex md-footer-nav__link md-footer-nav__link--prev" class="md-flex md-footer-nav__link md-footer-nav__link--prev"
rel="prev"> rel="prev">
<div class="md-flex__cell md-flex__cell--shrink"> <div class="md-flex__cell md-flex__cell--shrink">
@ -85,9 +86,10 @@
</div> </div>
{% endif %} {% endif %}
powered by powered by
<a href="http://www.mkdocs.org">MkDocs</a> <a href="http://www.mkdocs.org" title="MkDocs">MkDocs</a>
and and
<a href="http://squidfunk.github.io/mkdocs-material/"> <a href="http://squidfunk.github.io/mkdocs-material/"
title="Material for MkDocs">
Material for MkDocs</a> Material for MkDocs</a>
</div> </div>