templates/Default/menu.html.twig line 1

Open in your IDE?
  1. {% extends 'Default/parameters.html.twig' %}
  2. {% import "Default/macros.html.twig" as macros %}
  3. {% block html %}
  4. {% apply spaceless %}
  5. {% set menus = [] %}
  6. {% set menus = menus|merge({'home':{label:"Accueil", href:url("home"), id:'home'}}) %}
  7. {% set submenus = [] %}
  8. {% set submenus = submenus|merge([{label:"Mot du Directeur", href: url("word") }]) %}
  9. {% set submenus = submenus|merge([{label:"Le CeFAL en bref", href: url("about") }]) %}
  10. {% set submenus = submenus|merge([{label:"Mission et attributions", href: url("attributions") }]) %}
  11. {% set submenus = submenus|merge([{label:"Conseil pédagogique", href: url("advisors") }]) %}
  12. {% set submenus = submenus|merge([{label:"Conseil d'administration", href: url("administrators") }]) %}
  13. {% set submenus = submenus|merge([{label:"Commissariat aux comptes", href: url("auditors") }]) %}
  14. {% set submenus = submenus|merge([{label:"Directions techniques", href: url("structures") }]) %}
  15. {% set submenus = submenus|merge([{label:"Statut et règlement intérieur", href: url("statuses") }]) %}
  16. {% set submenus = submenus|merge([{label:"Organigramme", href: url("organisation") }]) %}
  17. {% set menus = menus|merge({'about':{label:"À Propos", submenus: submenus, id:'about'}}) %}
  18. {% set submenus = [] %}
  19. {% for o in formations %}
  20. {% set submenus = submenus|merge([{label:o.label, href: path("formation",{id:o.id,slug:o.slug}) }]) %}
  21. {% endfor %}
  22. {% set menus = menus|merge({'formations':{label:"Prestations", href:url("formations"), submenus: submenus, id:'formations'}}) %}
  23. {% set submenus = [] %}
  24. {% for o in articlesCats %}
  25. {% set submenus = submenus|merge([{label:o.name, href: path("articles-cat",{cat:o.slug}) }]) %}
  26. {% endfor %}
  27. {% set menus = menus|merge({'articles':{label:"Publications", href:url("articles"), submenus: submenus, id:'articles'}}) %}
  28. {% set submenus = [] %}
  29. {% for o in resourcesCats %}
  30. {% set submenus = submenus|merge([{label:o.label, href: path("resources-cat",{slug:o.slug}) }]) %}
  31. {% endfor %}
  32. {% set menus = menus|merge({'documents':{label:"Documenthèque", href:url("resources"), submenus: submenus, id:'documents'}}) %}
  33. {% set menus = menus|merge({'contacts':{label:"Contacts", href:url('contacts'), id:'contacts'}}) %}
  34. {% block content %}
  35. {% if isMobile() %}
  36. <div class=''>
  37.     <ul class='list h4 upper flex col lspacing vt-15-in gpadding white'>
  38.         {% for o in menus %}
  39.         <li class='vt-3-in'>
  40.             {% if o.href is defined and o.href and o.submenus is not defined %}
  41.             <a href='{{o.href}}' class='vt-8-in nowrap flex col middle relative pointer medium'>{{o.label}}</a>
  42.             {% else %}
  43.             <span class='vt-8-in nowrap flex row space middle relative pointer medium os-click' data-target='next'>
  44.                 <span>{{o.label}}</span>
  45.                 <i class='fa fa-chevron-down'></i>
  46.             </span>
  47.             {% endif %}
  48.             {% if o.submenus is defined %}
  49.             <ul class='left-20-in top-7-in border border-gray border-notop border-noright border-nobottom'>
  50.                 {% if o.href is defined %}
  51.                 <li>
  52.                     <a href='{{o.href}}' class='flex col middle relative pointer vt-3-in'>Tout</a>
  53.                 </li>
  54.                 {% endif %}
  55.                 {% for k in o.submenus %}
  56.                 <li>
  57.                     <a href='{{k.href}}' class='flex col middle relative pointer vt-3-in'>{{k.label}}</a>
  58.                 </li>
  59.                 {% endfor %}
  60.             </ul>
  61.             {% endif %}
  62.         </li>
  63.         {% endfor %}
  64.     </ul>
  65. </div>
  66. {% else %}
  67. <div class='fill top'>
  68.     <ul class='list flex row center p-alt medium white fill text-center'>
  69.         {% for o in menus %}
  70.         <li class='relative h100 menu transition {{activeMenu == o.id ? "active"}}'>
  71.             {% if o.href is defined and o.href %}
  72.             <a href='{{o.href}}' class='nowrap transition relative pointer iflex row middle h100'>
  73.                 <span class='vt-5-in hz-30-in'>{{o.label}}</span>
  74.             </a>
  75.             {% else %}
  76.             <span class='os-click transition relative pointer iflex row middle h100' data-target='next'>
  77.                 <span class='vt-5-in hz-30-in'>{{o.label}}</span>
  78.             </span>
  79.             {% endif %}
  80.             {% if o.submenus is defined %}
  81.             <ul class='absolute shadow transition-1s p-alt text-left success medium vt-10-in hz-40-in hoverflow ytop-100'>
  82.                 <i class="absolute fill top left bg-white"></i>
  83.                 {% for k in o.submenus %}
  84.                 <li class='relative'>
  85.                     <a href='{{k.href}}' class='iflex col middle relative pointer vt-5-in vt-7'>{{k.label}}</a>
  86.                 </li>
  87.                 {% endfor %}
  88.             </ul>
  89.             {% endif %}
  90.         </li>
  91.         {% endfor %}
  92.     </ul>
  93. </div>
  94. {% endif %}
  95. {% endblock %}
  96. {% endapply %}
  97. {% endblock %}