templates/homepage-articles/alaune.html.twig line 1

Open in your IDE?
  1. <div class="dflex fwwrap alaune-preview-container mt-40px mb-40px">
  2.     {% set request = get_articles_a_la_une(thematiques) %}
  3.     {% for i, hit in request %}
  4.         {% set type = hit.template %}
  5.         {% set url = sulu_content_path(hit.routePath) %}
  6.         {% set authored = hit.authored %}
  7.         {% if hit.excerptCategories is defined and hit.excerptCategories|length > 0 %}
  8.             {% set categories = hit.excerptCategories %}
  9.         {% endif %}
  10.         {% set title = hit.title %}
  11.         {% set hitChapo = hit.chapo %}
  12.         {% set hitAuthor = hit.author %}
  13.         {% set hitReadtime = hit.readtime %}
  14.         {% set author_name = hit.name %}
  15.         {% set author_lastname = hit.lastname %}
  16.         {% set visibleAnnuaire = hit.visibleAnnuaire %}
  17.         {% set header_img = hit.header_img %}
  18.         {% set hitContributors = hit.contributors %}
  19.         {% set hitDepartement = hit.departement %}
  20.         {% if header_img is defined and header_img is not empty %}
  21.             {% set img = sulu_resolve_media(header_img.id, 'fr') %}
  22.         {% endif %}
  23.         {% if hitContributors is defined and hitContributors|length > 0 %}
  24.             {% set contributors = hit.contributors %}
  25.         {% endif %}
  26.         {% if hitReadtime is defined and hitReadtime is not empty %}
  27.             {% set readtime = hitReadtime %}
  28.         {% endif %}
  29.         {% if hitChapo is defined and hitChapo is not empty %}
  30.             {% set chapo = hitChapo %}
  31.         {% endif %}
  32.         {% if hitDepartement is defined and hitDepartement is not empty %}
  33.             {% set departement = hitDepartement %}
  34.         {% endif %}
  35.         {% set title_lines = "" %}
  36.         {% if i > 0 %}
  37.             {% set title_lines = "fourlines" %}
  38.         {% endif %}
  39.         {% if type == "articles" or type == "analyses" or type == "guides_outils" %}
  40.             {% include "blocks/previews-from-controller/preview-article-logic.html.twig" %}
  41.         {% elseif type == "experiences" %}
  42.             {% include "blocks/previews-from-controller/preview-territoire-experience-logic.html.twig" %}
  43.         {% endif %}
  44.     {% endfor %}
  45. </div>