Use HTML5 article tag for blog post summaries

See: https://developer.mozilla.org/en/docs/Web/HTML/Element/article
This commit is contained in:
Alan Orth 2016-08-29 16:24:14 +03:00
parent bfaa9ac247
commit ea1da4a69e
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<div class="blog-post">
<article class="blog-post">
<h2 class="blog-post-title"><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h2>
<p class="blog-post-meta"><time datetime="{{ .Date }}">{{ .Date.Format .Site.Params.date_format }}</time> by <a href="#">Mark</a></p>
{{ .Summary }}
<a href='{{ .Permalink }}'><nobr>Read more →</nobr></a>
</div> <!-- /.blog-post -->
</article> <!-- /.blog-post -->