Explorar o código

Fix missing type

Thomas Rabaix %!s(int64=11) %!d(string=hai) anos
pai
achega
8d54073303
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      Resources/views/standard_layout.html.twig

+ 2 - 2
Resources/views/standard_layout.html.twig

@@ -30,7 +30,7 @@ file that was distributed with this source code.
         {% block stylesheets %}
 
             {% for stylesheet in admin_pool.getOption('stylesheets', []) %}
-                <link rel="stylesheet" href="{{ asset(stylesheet) }}" />
+                <link rel="stylesheet" type="text/css"  href="{{ asset(stylesheet) }}"  />
             {% endfor %}
 
         {% endblock %}
@@ -47,7 +47,7 @@ file that was distributed with this source code.
             </script>
 
             {% for javascript in admin_pool.getOption('javascripts', []) %}
-                <script src="{{ asset(javascript) }}"></script>
+                <script src="{{ asset(javascript) }}" type="text/javascript"></script>
             {% endfor %}
 
         {% endblock %}