about summary refs log tree commit diff
path: root/users/fcuny/blog
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
commit1bc594f88a7ed696ce2d3be47c6423331043f225 (patch)
tree5be9c2d9ad1a3ab9fd740b8fa6fe855a0315bc19 /users/fcuny/blog
parentCSS: make the content more readable (diff)
downloadworld-1bc594f88a7ed696ce2d3be47c6423331043f225.tar.gz
layout: don't use header tag in list
Diffstat (limited to 'users/fcuny/blog')
-rw-r--r--users/fcuny/blog/layouts/partials/postlist.html2
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 }}