diff options
Diffstat (limited to 'layouts/index.html')
-rw-r--r-- | layouts/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/index.html b/layouts/index.html index 209009e..6b273ff 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -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 }} \ No newline at end of file +{{- end }} |