Browse Source

Fix missing closing </li> tag

Sage Abdullah 2 năm trước cách đây
mục cha
commit
a16fcf7557
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 %}