51 lines
1.8 KiB
Twig
51 lines
1.8 KiB
Twig
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>{% block title %}{{ project_name }} Admin - Login{% endblock %}</title>
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
{% block stylesheets %}
|
|
{% stylesheets filter='cssrewrite'
|
|
'@JotunheimrAdminBundle/Resources/public/js/vendor/bootstrap/css/bootstrap.min.css' %}
|
|
<link rel="stylesheet" media="screen" href="{{ asset_url }}"/>
|
|
{% endstylesheets %}
|
|
{% endblock %}
|
|
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}"/>
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% if app.request.hasPreviousSession %}
|
|
{% for type, messages in app.session.flashbag.all() %}
|
|
{% for message in messages %}
|
|
<div class="flash-{{ type }}">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<div>
|
|
{% block fos_user_content %}
|
|
{% endblock fos_user_content %}
|
|
</div>
|
|
|
|
{% 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' %}
|
|
<script type="text/javascript" src="{{ asset_url }}"></script>
|
|
{% endjavascripts %}
|
|
{% endblock %}
|
|
|
|
</body>
|
|
</html>
|