about summary refs log tree commit diff stats
path: root/layouts/index.html
diff options
context:
space:
mode:
authorAlan Pearce2019-06-15 20:32:22 +0200
committerAlan Pearce2019-06-15 20:32:22 +0200
commitcd464ebccfc2d517bce1abccbcb43e7f3d1948d3 (patch)
treed27bd82aa0017ce0d285bdd1369430b9a590920b /layouts/index.html
parent15a6ffcdbbba13c1635c0fc45bfbf4313e75c074 (diff)
parente36f5799b396ecf7a665b330da8cac5b0b6e2891 (diff)
downloadhyde-main.tar.lz
hyde-main.tar.zst
hyde-main.zip
Merge remote-tracking branch 'upstream/master' into HEAD HEAD master main
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 }}