diff options
author | Franck Cuny <franck@fcuny.net> | 2021-08-15 15:15:40 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-08-15 15:15:40 -0700 |
commit | 9aa8a776a5370aeb1c5250321371949c509ae64f (patch) | |
tree | 5afe31774a77ea8e1665d876cbc8a32cb004cfbd /users | |
parent | CSS: make the content more readable (diff) | |
download | world-9aa8a776a5370aeb1c5250321371949c509ae64f.tar.gz |
layout: don't use header tag in list
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/notes/layouts/partials/postlist.html | 2 |
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 }} |