templates/dashboard_free/menu-gauche.html.twig line 1

Open in your IDE?
  1. <div class="my-2">
  2.     <div class="md:bg-grenat flex justify-center md:justify-normal items-end rounded-t-lg p-[20px]">
  3.         <img src="{{ base_url }}/static/img/dashboard-free/clap-niveaux.webp" alt="Les bons profs - Cours gratuits" class="hidden md:block w-[40px]"/>
  4.         <img src="{{ base_url }}/static/img/dashboard-free/clap-niveaux2.webp" alt="Les bons profs - Cours gratuits" class="md:hidden w-[40px]"/>
  5.         <h2 class="text-grenat md:text-white text-[25px] font-bold -mb-[6px] ml-1">
  6.             {{ course.title|capitalize }}
  7.         </h2>
  8.     </div>
  9.     <div>
  10.         <ul class="md:bg-rose text-[15px] md:h-[355px] rounded-b-lg text-center md:text-left overflow-auto menu-matieres">
  11.             {% for row in listLibrairy %}
  12.             <li class="inline-block md:block">
  13.                 <a href="/nos-cours/{{ course.slug~'/'~row.slug }}" class="flex items-center bg-white md:bg-inherit font-bold hover:text-grenat border-b border-grenatPastel rounded-[20px] md:rounded-none p-2 md:py-[13px] md:px-[20px] m-[2px] md:my-0 md:mx-[10px]">
  14.                     {% set srcIcone = "/static/img/dashboard-free/icones-matieres/"~row.slug~".svg"  %}
  15.                     {% if row.slug in ['mathematiques','mathematiques_expertes','mathematiques_complementaires'] %}
  16.                         {% set srcIcone = "/static/img/dashboard-free/icones-matieres/mathematiques.svg"  %}
  17.                     {% endif %}
  18.                     {% if row.slug == 'sciences' %}
  19.                         {% set srcIcone = "/static/img/dashboard-free/icones-matieres/svt.svg"  %}
  20.                     {% endif %}
  21.                     {% if row.slug == 'llcer-anglais' %}
  22.                         {% set srcIcone = "/static/img/dashboard-free/icones-matieres/anglais.svg"  %}
  23.                     {% endif %}
  24.                     <img src="{{ base_url~srcIcone }}" alt="Les bons profs - Cours gratuits - {{ course.title|capitalize }}" class="hidden md:block w-[20px] mr-[5px]"/>
  25.                     {{ row.dTitle }}
  26.                 </a>
  27.             </li>
  28.             {% endfor %}
  29.         </ul>
  30.     </div>
  31. </div>