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 | 212e4231a7b2b05f96b69aca6d3c2b1aed3e38ca (patch) | |
tree | 7f2bc44d7dcbd879264d64b232247b8c5cd5e578 | |
parent | CSS: make the content more readable (diff) | |
download | fcuny.net-212e4231a7b2b05f96b69aca6d3c2b1aed3e38ca.tar.gz |
layout: don't use header tag in list
-rw-r--r-- | layouts/partials/postlist.html | 2 |
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 }} |