Browse Source

Fix missing closing </li> tag

Sage Abdullah 2 years ago
parent
commit
a16fcf7557
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bakerydemo/templates/tags/table_of_contents_menu.html

+ 1 - 1
bakerydemo/templates/tags/table_of_contents_menu.html

@@ -22,7 +22,7 @@
               {% if heading.children %}
                 <ul>
                   {% for subheading in heading.children %}
-                    <li><a href="#{{subheading|slugify}}">{{subheading}}</a>
+                    <li><a href="#{{subheading|slugify}}">{{subheading}}</a></li>
                   {% endfor %}
                 </ul>
               {% endif %}