added seperator between post entries in side bar navigations

This commit is contained in:
Ateeb Ahmed
2025-02-16 19:53:10 +05:00
parent 13bb39c826
commit 9be1c7fdeb
+2 -2
View File
@@ -32,9 +32,9 @@
{% if showMore == 'true' %}
{% if forloop.index <= 3 %}
<li><a href="{{ child.url | relative_url }}"{% if child.url == page.url %} class="active"{% endif %}>{{ child.title }}</a></li>
<li style='border-bottom: 1px solid gray;'><a href="{{ child.url | relative_url }}"{% if child.url == page.url %} class="active"{% endif %}>{{ child.title }}</a></li>
{% else %}
<li class="hidden hidden_blog_item"><a href="{{ child.url | relative_url }}"{% if child.url == page.url %} class="active"{% endif %}>{{ child.title }}</a></li>
<li style='border-bottom: 1px solid gray;' class="hidden hidden_blog_item"><a href="{{ child.url | relative_url }}"{% if child.url == page.url %} class="active"{% endif %}>{{ child.title }}</a></li>
{% endif %}
{% if forloop.last %}