2016-09-22 13:56:57 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
2016-09-23 22:57:35 +02:00
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
|
|
|
|
{% block stylesheets %}
|
|
|
|
|
{#{% stylesheets filter='cssrewrite'
|
|
|
|
|
'@JotunheimrAdminBundle/Resources/public/js/vendor/bootstrap/css/bootstrap.min.css'
|
|
|
|
|
'@TollTereloBundle/Resources/public/css/style.css' %}
|
|
|
|
|
<link rel="stylesheet" media="screen" href="{{ asset_url }}" type="text/css"/>
|
|
|
|
|
{% endstylesheets %}#}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}"/>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
|
{% block javascripts %}
|
|
|
|
|
{#{% javascripts
|
|
|
|
|
'@JotunheimrAdminBundle/Resources/public/js/vendor/plugins/jQuery/jquery-3.0.0.min.js'
|
|
|
|
|
'@JotunheimrAdminBundle/Resources/public/js/vendor/plugins/jQuery/jquery-migrate-3.0.0.min.js'
|
|
|
|
|
'@JotunheimrAdminBundle/Resources/public/js/vendor/bootstrap/js/bootstrap.min.js'
|
|
|
|
|
'@TollTereloBundle/Resources/public/js/script.js' %}
|
|
|
|
|
<script type="text/javascript" src="{{ asset_url }}"></script>
|
|
|
|
|
{% endjavascripts %}#}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
</body>
|
2016-09-22 13:56:57 +02:00
|
|
|
</html>
|