Ver Fonte

Fix non valid html code

Thomas Rabaix há 13 anos atrás
pai
commit
5792936416
1 ficheiros alterados com 7 adições e 10 exclusões
  1. 7 10
      Resources/views/standard_layout.html.twig

+ 7 - 10
Resources/views/standard_layout.html.twig

@@ -24,7 +24,7 @@ file that was distributed with this source code.
 
         {% block stylesheets %}
             <!-- jQuery code -->
-            <link rel="stylesheet" href="{{ asset('bundles/sonatajquery/themes/flick/jquery-ui-1.8.6.custom.css') }}" type="text/css" media="all" />
+            <link rel="stylesheet" href="{{ asset('bundles/sonatajquery/themes/flick/jquery-ui-1.8.16.custom.css') }}" type="text/css" media="all" />
 
             <link rel="stylesheet" href="{{ asset('bundles/sonataadmin/bootstrap/bootstrap.min.css') }}" type="text/css" media="all" >
 
@@ -79,7 +79,7 @@ file that was distributed with this source code.
                         {% if admin_pool is defined %}
                             {% block logo %}
                                 <a href="{{ url('sonata_admin_dashboard') }}" class="brand">
-                                    <img src="{{ asset(admin_pool.titlelogo) }}"  />
+                                    <img src="{{ asset(admin_pool.titlelogo) }}"  alt="{{ admin_pool.title }}" />
                                     {{ admin_pool.title }}
                                 </a>
                             {% endblock %}
@@ -111,14 +111,11 @@ file that was distributed with this source code.
                     {% if _breadcrumb is empty %}
                         {% if action is defined %}
                             {% for label, uri in admin.breadcrumbs(action) %}
-                                <li>
-                                    {% if not loop.last  %}
-                                        <a href="{{ uri }}">{{ label }}</a>
-                                        <span class="divider">/</span>
-                                    {% else %}
-                                        <li class="active">{{ label }}</li>
-                                    {% endif %}
-                                </li>
+                                {% if not loop.last  %}
+                                    <li><a href="{{ uri }}">{{ label }}</a><span class="divider">/</span></li>
+                                {% else %}
+                                    <li class="active">{{ label }}</li>
+                                {% endif %}
                             {% endfor %}
                         {% endif %}
                     {% else %}