about summary refs log tree commit diff
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
commit9aa8a776a5370aeb1c5250321371949c509ae64f (patch)
tree5afe31774a77ea8e1665d876cbc8a32cb004cfbd
parentCSS: make the content more readable (diff)
downloadworld-9aa8a776a5370aeb1c5250321371949c509ae64f.tar.gz
layout: don't use header tag in list
-rw-r--r--users/fcuny/notes/layouts/partials/postlist.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/fcuny/notes/layouts/partials/postlist.html b/users/fcuny/notes/layouts/partials/postlist.html
index 28fd9b2..e124482 100644
--- a/users/fcuny/notes/layouts/partials/postlist.html
+++ b/users/fcuny/notes/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 }}