templates/front/heroes/hero-list.html.twig line 1

Open in your IDE?
  1. {% set isPublications = page.type == 'publications-list' %}
  2. {% set isNews = page.type == 'news-list' %}
  3. {% set bgColor = 'bg-orange' %}
  4. {% set suptitle = 'Actualités' %}
  5. {% set suptitleClass = 'hero__round--orange text-orange-dark' %}
  6. {% set iconColor = 'icon--orange-hover' %}
  7. {% set rowClass = 'mt-8 md:mt-10' %}
  8. {% set paddingTitle = 'pt-13 md:pt-8' %}
  9. {% if isPublications %}
  10.     {% set bgColor = 'bg-violet-dark' %}
  11.     {% set suptitle = 'Publications' %}
  12.     {% set suptitleClass = 'hero__round--violet text-orange' %}
  13.     {% set iconColor = 'icon--violet' %}
  14. {% elseif page.type == 'index' %}
  15.     {% set bgColor = 'bg-green' %}
  16.     {% set suptitle = 'Nos fédérations' %}
  17.     {% set suptitleClass = 'hero__round--green text-violet' %}
  18.     {% set iconColor = 'icon--green-light' %}
  19.     {% set rowClass = 'mt-8 md:mt-1' %}
  20.     {% set paddingTitle = 'pt-13 md:pt-18' %}
  21. {% endif %}
  22. <div class="hero-list {{ bgColor}} {{ not isPublications and not isNews ? 'text-violet-dark hero-list--index' : 'text-white' }}">
  23.     <div class="fluid-grid lg:pt-13">
  24.         {% include 'front/partials/breadcrumb.html.twig' with {theme: isPublications ? 'white' : isNews ? 'orange-dark' : 'dark' } %}
  25.         
  26.         <div class="row {{ rowClass }} relative z-1 pl-10 md:pl-0">
  27.             <div class="col-12 md-col-7 lg-col-6 md-col-offset-1 xl:relative">
  28.                 <span class="hero__round hero__round--big {{ suptitleClass }} icon-center">
  29.                     {{ suptitle }}
  30.                 </span>
  31.                 <h1 class="font-semibold title--XL {{ paddingTitle }}">{{ page.title }}</h1>
  32.                 {% if page.description is defined and page.description is not null %}
  33.                     <div class="paragraph wysiwyg paragraph--L mt-6 hero-list__chapo">
  34.                         {{ page.description|raw }}
  35.                     </div>
  36.                 {% endif %}
  37.             </div>
  38.             <div class="col-12 md-col-3 xl-col-4 md-col-offset-9 lg-col-offset-8 order-first md:order-last">
  39.                 {% if not isPublications and not isNews %}
  40.                 <svg width="382" height="382" class="hero-list__icon {{ iconColor }}">
  41.                     <use href="#icon-fede" xlink:href="#icon-fede"></use>
  42.                 </svg>
  43.                 {% else %}
  44.                 <svg width="308" height="308" class="hero-list__icon {{ iconColor }}">
  45.                     <use href="#icon-list-doc" xlink:href="#icon-list-doc"></use>
  46.                 </svg>
  47.                 {% endif %}
  48.             </div>
  49.         </div>
  50.     </div>
  51. </div>