summaryrefslogtreecommitdiff
path: root/templates/section.html
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2024-04-26 00:32:57 -0600
committerNavan Chauhan <navanchauhan@gmail.com>2024-04-26 00:32:57 -0600
commit23b6be03499a01d5b17654637f9e567e6cdf9b28 (patch)
tree47fa3e53272b4ed5f6b35f04d60be0223e932aec /templates/section.html
parent94cf09b1379f6dc23114805656183de1fc2c8264 (diff)
pass w3c html4 validation
Diffstat (limited to 'templates/section.html')
-rw-r--r--templates/section.html3
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>