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 | 1bc594f88a7ed696ce2d3be47c6423331043f225 (patch) | |
tree | 5be9c2d9ad1a3ab9fd740b8fa6fe855a0315bc19 /users/fcuny | |
parent | CSS: make the content more readable (diff) | |
download | world-1bc594f88a7ed696ce2d3be47c6423331043f225.tar.gz |
layout: don't use header tag in list
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/blog/layouts/partials/postlist.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/fcuny/blog/layouts/partials/postlist.html b/users/fcuny/blog/layouts/partials/postlist.html index 28fd9b2..e124482 100644 --- a/users/fcuny/blog/layouts/partials/postlist.html +++ b/users/fcuny/blog/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 }} |