Remove need for title attributes, #14

This commit is contained in:
David Darnes 2018-01-01 19:13:40 +00:00
parent 620051e2d3
commit efeb7623ea
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
<li class="item item--post">
<article class="article article--post typeset">
<h2><a href="{{ page.url }}" title="{{ page.title }}">{{ page.title }}</a></h2>
<h2><a href="{{ page.url }}">{{ page.title }}</a></h2>
{% include post-meta.html %}
{{ page.excerpt | markdownify | truncatewords: 60 }}
@ -22,7 +22,7 @@
<li class="item item--post">
<article class="article article--post typeset">
<h2><a href="{{ page.url }}" title="{{ page.title }}">{{ page.title }}</a></h2>
<h2><a href="{{ page.url }}">{{ page.title }}</a></h2>
{% include post-meta.html %}
{{ page.excerpt | markdownify | truncatewords: 60 }}

View File

@ -1,3 +1,3 @@
<a class="logo" href="{{ site.url }}" title="{{ site.title }}">
<a class="logo" href="{{ site.url }}">
<img src="{{ site.logo }}" alt="{{ site.title }} logo"/>
</a>