about summary refs log tree commit diff
path: root/layouts
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-08-15 15:15:40 -0700
committerFranck Cuny <franck@fcuny.net>2021-08-15 15:15:40 -0700
commit212e4231a7b2b05f96b69aca6d3c2b1aed3e38ca (patch)
tree7f2bc44d7dcbd879264d64b232247b8c5cd5e578 /layouts
parentCSS: make the content more readable (diff)
downloadfcuny.net-212e4231a7b2b05f96b69aca6d3c2b1aed3e38ca.tar.gz
layout: don't use header tag in list
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/postlist.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/postlist.html b/layouts/partials/postlist.html
index 28fd9b2..e124482 100644
--- a/layouts/partials/postlist.html
+++ b/layouts/partials/postlist.html
@@ -4,7 +4,7 @@
     {{ range .Pages.ByDate }}
     <li>
       <div>
-        <a href="{{ .Permalink }}"><h3>{{ .Title }}</h3></a>
+        <a href="{{ .Permalink }}">{{ .Title }}</a>
       </div>
     </li>
     {{ end }}