templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Accueil{% endblock %}
  3. {% block body %}
  4.     <div class="flex flex-col justify-center items-center min-h-screen bg-black">
  5.         <h1 class="text-3xl text-white font-bold">plaquette digitale dynamique générique</h1>
  6.         <h2 class="text-xl text-white mb-3">dernière mise à jour : 25/11/2020</h2>
  7.         <span class="inline-flex rounded-md shadow-sm">
  8.           <a href="{{ path('admin-index') }}" type="button" class="inline-flex items-center px-4 py-2 border border-gray-300 text-sm leading-5 font-medium rounded-md text-gray-700 bg-white hover:text-gray-500 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:text-gray-800 active:bg-gray-50 transition ease-in-out duration-150">
  9.             Panel de gestion des contenusx
  10.           </a>
  11.         </span>
  12.     </div>
  13. {% endblock %}