templates/main/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Accueil{% endblock %}
  3. {% block body %}
  4. <main class="d-flex flex-column align-items-center justify-content-center">
  5.      <h1 class="mb-40">Je suis la page de prez comicarte</h1>
  6.      <div class="d-flex flex-column align-items-center">
  7.           <h3>Boutons de test</h3>
  8.           <div class="tests">
  9.                <a class="btn btn-red" href="{{ path('security_login') }}">Se Connecter</a>
  10.                <a class="btn btn-red" href="{{ path('security_logout') }}">Se Déconnecter</a>
  11.                <a class="btn btn-red" href="{{ path('admin') }}">Administration</a>
  12.           </div>
  13.      </div>
  14. </main>
  15.      
  16. {% endblock %}