From f2b606fc23585b46bc758120e5fcacc03790a28d Mon Sep 17 00:00:00 2001 From: Emmanuel BALLERY Date: Thu, 24 Apr 2014 22:59:12 +0200 Subject: [PATCH] Fix wrong HTML structure ul>li --- Resources/views/resources.html.twig | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Resources/views/resources.html.twig b/Resources/views/resources.html.twig index 2afd4c2..1e73588 100644 --- a/Resources/views/resources.html.twig +++ b/Resources/views/resources.html.twig @@ -3,8 +3,9 @@ {% block content %} {% for section, sections in resources %} {% if section != '_others' %} -
-

{{ section }}

+
  • +

    {{ section }}

    +
      {% endif %} {% for resource, methods in sections %}
    • @@ -27,7 +28,8 @@
    • {% endfor %} {% if section != '_others' %} -
  • + + {% endif %} {% endfor %} {% endblock content %}