-
Notifications
You must be signed in to change notification settings - Fork 348
/
base_sass.html.twig
27 lines (25 loc) · 1.18 KB
/
base_sass.html.twig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends '@MopaBootstrap/layout.html.twig' %}
{% block head_style %}
{# Override this block to add your own files! #}
{% stylesheets
'@MopaBootstrapBundle/Resources/public/sass/mopabootstrapbundle.scss'
%}
<link href="{{ asset_url }}" type="text/css" rel="stylesheet" media="screen" />
{% endstylesheets %}
{# To use this without less use the base_css.html.twig template as your base
# Be sure you understand whats going on: have a look into
# https://github.com/phiamo/MopaBootstrapBundle/blob/master/Resources/doc/css-vs-less.md
#}
{% endblock head_style %}
{% block foot_script_assetic %}
{# Please add the javascripts you need in your project
{% javascripts
'@MopaBootstrapBundle/Resources/public/bootstrap-sass/vendor/assets/javascripts/bootstrap/tooltip.js'
'@MopaBootstrapBundle/Resources/public/bootstrap-sass/vendor/assets/javascripts/bootstrap/*.js'
'@MopaBootstrapBundle/Resources/public/js/mopabootstrap-collection.js'
'@MopaBootstrapBundle/Resources/public/js/mopabootstrap-subnav.js'
%}
<script type="text/javascript" src="{{ asset_url }}"></script>
{% endjavascripts %}
#}
{% endblock foot_script_assetic %}