diff --git a/templates/base.html.twig b/templates/base.html.twig deleted file mode 100644 index 9d5aa3b5006932cc35b6dff0e2a1913672edfa72..0000000000000000000000000000000000000000 --- a/templates/base.html.twig +++ /dev/null @@ -1,19 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <meta charset="UTF-8"> - <title>{% block title %}Welcome!{% endblock %}</title> - {# Run `composer require symfony/webpack-encore-bundle` - and uncomment the following Encore helpers to start using Symfony UX #} - {% block stylesheets %} - {{ encore_entry_link_tags('app') }} - {% endblock %} - - {% block javascripts %} - {{ encore_entry_script_tags('app') }} - {% endblock %} - </head> - <body> - {% block body %}{% endblock %} - </body> -</html> diff --git a/templates/registration.base.html.twig b/templates/layout.html.twig similarity index 100% rename from templates/registration.base.html.twig rename to templates/layout.html.twig diff --git a/templates/registration/register.html.twig b/templates/registration/register.html.twig index dccd0cfe34fab306796de22196bfbed84499082b..3316b81b1a8dd8272b7a49ef8519d23fa952b502 100644 --- a/templates/registration/register.html.twig +++ b/templates/registration/register.html.twig @@ -1,4 +1,4 @@ -{% extends 'registration.base.html.twig' %} +{% extends 'layout.html.twig' %} {% block title %}Register{% endblock %} {% block body %} diff --git a/templates/registration/register_mail_sent.html.twig b/templates/registration/register_mail_sent.html.twig index 4acd445144a067d71cce42e6335616e0cac97022..3257155830e794e8ff59f2ff2788ae3e1ead1b22 100644 --- a/templates/registration/register_mail_sent.html.twig +++ b/templates/registration/register_mail_sent.html.twig @@ -1,4 +1,4 @@ -{% extends 'registration.base.html.twig' %} +{% extends 'layout.html.twig' %} {% block title %}Mail registration sent{% endblock %} {% block body %} diff --git a/templates/security/login.html.twig b/templates/security/login.html.twig index 3c78306729bfe2f4dc00b017e787b463186cd975..7b30be124c4644f30e87210b93a9a7df86ccc517 100644 --- a/templates/security/login.html.twig +++ b/templates/security/login.html.twig @@ -1,4 +1,4 @@ -{% extends 'base.html.twig' %} +{% extends 'layout.html.twig' %} {% block title %}Log in!{% endblock %}