Explorar el Código

Fix missing closing </li> tag

Sage Abdullah hace 2 años
padre
commit
a16fcf7557
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 %}