about summary refs log tree commit diff stats
path: root/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 04d3175..f9ddeae 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,7 +1,7 @@
 {{ define "main" -}}
 <div class="posts">
 {{ range .Data.Pages -}}
-<div class="post">
+<article class="post">
   <h1 class="post-title">
     <a href="{{ .Permalink }}">{{ .Title }}</a>
   </h1>
@@ -12,7 +12,7 @@
     <a href="{{ .RelPermalink }}">Read Moreā€¦</a>
   </div>
   {{ end }}
-</div>
+</article>
 {{- end }}
 </div>
 {{- end }}