templates/homepage/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %} Accueil | Synapse{% endblock %}
  3. {% block body %}
  4.         <div class="mt-10 text-center">
  5.             <div class="min-h-32 grid grid-cols-12 gap-x-6">
  6.                 <a href="{{ path('app_marche_public_create') }}" class="col-span-4 font-bold text-lg py-2 px-4 rounded transition duration-300 home-button flex items-center justify-center">Marchés publics</a>
  7.                 <a href="{{ path('app_concession_create') }}" class="col-span-4 font-bold text-lg py-2 px-4 rounded transition duration-300 home-button flex items-center justify-center">Concessions</a>
  8.                 <a href="{{ path('app_show_all_marches_and_concessions') }}" target="_blank" class="col-span-4 font-bold text-lg py-2 px-4 rounded transition duration-300 home-button flex items-center justify-center">Liste des marchés</a>
  9.                 <!--
  10.                     <a href="{{ path('app_show_all_marches_and_concessions') }}" target="_blank" class="py-2 px-4 border-2 border-blue-500 text-blue-500 rounded hover:border-transparent hover:bg-blue-500 hover:text-white transition duration-300">Liste des marchés</a>
  11.                 -->
  12.                 {# <a href="{{ path('app_concession_create') }}" class="text-blue-500 hover:text-blue-700">Marchés publics</a>
  13.                 <a href="{{ path('app_marche_public_create') }}" class="text-blue-500 hover:text-blue-700">Concessions</a>
  14.                 <a href="" class="text-blue-500 hover:text-blue-700">Liste des marchés publics</a>#}
  15.             </div>
  16.         </div>
  17. {% endblock %}