18 lines
620 B
Twig
18 lines
620 B
Twig
{% extends '@AdminLTE/FOSUserBundle/Resetting/request.html.twig' %}
|
|
|
|
{% block logo_login %}{% include 'partials/logo_login.html.twig' %}{% endblock %}
|
|
{% block title %}{{- get_title() -}}{% endblock %}
|
|
|
|
{% block head %}
|
|
{{ parent() }}
|
|
<script src="{{ asset('build/app.js') }}"></script>
|
|
{% include 'partials/head.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
{# we do not call parent() as we use a custom built for the frontend assets and don't want the default <stylesheet> #}
|
|
<link rel="stylesheet" href="{{ asset('build/app.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}{% endblock %}
|