소스 검색

Fix missing closing </li> tag

Sage Abdullah 2 년 전
부모
커밋
a16fcf7557
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 %}