diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2024-04-13 21:45:07 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2024-04-13 21:45:07 -0600 |
commit | 2aaf958e3ceb7de9dba7894944349438a8162f9c (patch) | |
tree | a4b1d190c2d4f7197d2758f239a276132e584e6c /templates/index.html | |
parent | 5841234f682cbc51536d612515521dfacfd7d016 (diff) |
accessibility fixes
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html index cf2ca69..4de6b08 100644 --- a/templates/index.html +++ b/templates/index.html @@ -9,7 +9,7 @@ <h1>Recent Posts</h1> <ul> {% for post in posts[:5] %} - <li><a href="{{post.link}}">{{ post.title }}</a></li> + <li><a href="{{post.link}}">{{ post.title }}</a> <ul> <li>{{ post.description}}</li> <li>Published On: {{post.date}}</li> @@ -18,6 +18,7 @@ <a href='/tags/{{tag}}.html'>{{ tag }}</a>{{ ", " if not loop.last else "" }} {% endfor %} </ul> + </li> {% endfor %} </ul> |