Skip to content

Commit

Permalink
Remove useless type attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas committed Jan 15, 2014
1 parent f0b2014 commit bc1e936
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Resources/views/layout.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ 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.16.custom.css') }}" type="text/css" media="all" />
<link rel="stylesheet" href="{{ asset('bundles/sonatajquery/themes/flick/jquery-ui-1.8.16.custom.css') }}" media="all" />

<link rel="stylesheet" href="{{ asset('bundles/sonataadmin/bootstrap/css/bootstrap.min.css') }}" type="text/css" media="all" />
<link rel="stylesheet" href="{{ asset('bundles/sonataadmin/bootstrap/css/bootstrap-responsive.min.css') }}" type="text/css" media="all" />
<link rel="stylesheet" href="{{ asset('bundles/sonataadmin/bootstrap/css/bootstrap.min.css') }}" media="all" />
<link rel="stylesheet" href="{{ asset('bundles/sonataadmin/bootstrap/css/bootstrap-responsive.min.css') }}" media="all" />

<!-- base application asset -->
<link rel="stylesheet" href="{{ asset('bundles/sonataadmin/css/layout.css') }}" type="text/css" media="all" />
<link rel="stylesheet" href="{{ asset('bundles/sonataadmin/css/colors.css') }}" type="text/css" media="all" />
<link rel="stylesheet" href="{{ asset('bundles/sonataadmin/css/layout.css') }}" media="all" />
<link rel="stylesheet" href="{{ asset('bundles/sonataadmin/css/colors.css') }}" media="all" />
<style type="text/css">
body.sonata-bc {
padding-top: 0;
Expand All @@ -50,16 +50,16 @@ file that was distributed with this source code.
CONFIRM_EXIT: '{{ 'confirm_exit'|trans({}, 'SonataAdminBundle')|escape('js') }}'
};
</script>
<script src="{{ asset('bundles/sonatajquery/jquery-1.8.3.js') }}" type="text/javascript"></script>
<script src="{{ asset('bundles/sonatajquery/jquery-ui-1.8.23.js') }}" type="text/javascript"></script>
<script src="{{ asset('bundles/sonatajquery/jquery-ui-i18n.js') }}" type="text/javascript"></script>
<script src="{{ asset('bundles/sonatajquery/jquery-1.8.3.js') }}"></script>
<script src="{{ asset('bundles/sonatajquery/jquery-ui-1.8.23.js') }}"></script>
<script src="{{ asset('bundles/sonatajquery/jquery-ui-i18n.js') }}"></script>

<script src="{{ asset('bundles/sonataadmin/bootstrap/js/bootstrap.min.js') }}" type="text/javascript"></script>
<script src="{{ asset('bundles/sonataadmin/bootstrap/js/bootstrap.min.js') }}"></script>
<script src="{{ asset('bundles/sonataadmin/x-editable/js/bootstrap-editable.min.js') }}"></script>

<script src="{{ asset('bundles/sonataadmin/jquery/jquery.form.js') }}" type="text/javascript"></script>
{% if admin_pool is defined and admin_pool.getOption('confirm_exit') %}<script src="{{ asset('bundles/sonataadmin/jquery/jquery.confirmExit.js') }}" type="text/javascript"></script>{% endif %}
<script src="{{ asset('bundles/sonataadmin/base.js') }}" type="text/javascript"></script>
<script src="{{ asset('bundles/sonataadmin/jquery/jquery.form.js') }}"></script>
{% if admin_pool is defined and admin_pool.getOption('confirm_exit') %}<script src="{{ asset('bundles/sonataadmin/jquery/jquery.confirmExit.js') }}"></script>{% endif %}
<script src="{{ asset('bundles/sonataadmin/base.js') }}"></script>
{% endblock %}

<title>
Expand Down

0 comments on commit bc1e936

Please sign in to comment.