Parcourir la source

Fix missing closing </li> tag

Sage Abdullah il y a 2 ans
Parent
commit
a16fcf7557
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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 %}