mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-03 22:03:33 +03:00
Fix wrong HTML structure ul>li
This commit is contained in:
parent
c78466bbb9
commit
f2b606fc23
1 changed files with 5 additions and 3 deletions
|
@ -3,8 +3,9 @@
|
|||
{% block content %}
|
||||
{% for section, sections in resources %}
|
||||
{% if section != '_others' %}
|
||||
<div id="section">
|
||||
<h1>{{ section }}</h1>
|
||||
<li id="section">
|
||||
<h1>{{ section }}</h1>
|
||||
<ul>
|
||||
{% endif %}
|
||||
{% for resource, methods in sections %}
|
||||
<li class="resource">
|
||||
|
@ -27,7 +28,8 @@
|
|||
</li>
|
||||
{% endfor %}
|
||||
{% if section != '_others' %}
|
||||
</div>
|
||||
</ul>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endblock content %}
|
||||
|
|
Loading…
Add table
Reference in a new issue