diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2024-04-26 00:32:57 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2024-04-26 00:32:57 -0600 |
commit | d1624e73c5077d35bacd37138a6c031f2763ee62 (patch) | |
tree | ba47552862e6c906b63fbe01dfd5b366ae372950 /templates/section.html | |
parent | 6844c234cde69ee356168bb3dcb7d69fa4e8a74d (diff) |
pass w3c html4 validation
Diffstat (limited to 'templates/section.html')
-rw-r--r-- | templates/section.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/section.html b/templates/section.html index f713ad8..8c3e8cc 100644 --- a/templates/section.html +++ b/templates/section.html @@ -9,7 +9,7 @@ <ul> {% for post in posts %} - <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> |