fix(layouts/index): Use <time> and <article>

This commit is contained in:
Sorin Davidoi 2018-08-29 19:22:23 +02:00 committed by Bjørn Erik Pedersen
parent 13f4ea3c02
commit 0035acac13
1 changed files with 4 additions and 4 deletions

View File

@ -1,18 +1,18 @@
{{ define "main" -}}
<div class="posts">
{{ range .Data.Pages -}}
<div class="post">
<article class="post">
<h1 class="post-title">
<a href="{{ .Permalink }}">{{ .Title }}</a>
</h1>
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}" class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
{{ .Summary }}
{{ if .Truncated }}
<div class="read-more-link">
<a href="{{ .RelPermalink }}">Read More…</a>
</div>
{{ end }}
</div>
</article>
{{- end }}
</div>
{{- end }}
{{- end }}