templates/api/blocks/aapami-preview-content.html.twig line 1

Open in your IDE?
  1. {% if articleContent.header_img is defined and articleContent.header_img is not empty %}
  2.     {% set img = articleContent.header_img %}
  3. {% endif %}
  4. {% if articleContent.type_appel is defined and articleContent.type_appel is not empty %}
  5.     {% set type_appel = articleContent.type_appel %}
  6. {% endif %}
  7. {% if articleContent.limit_date is defined and articleContent.limit_date is not empty %}
  8.     {% set limit_date = articleContent.limit_date %}
  9. {% endif %}
  10. {% if articleContent.structure is defined and articleContent.structure is not empty %}
  11.     {% set structure = articleContent.structure %}
  12. {% endif %}
  13. {% if articleContent.chapo.value is defined and articleContent.chapo.value is not empty %}
  14.     {% set chapo = articleContent.chapo.value %}
  15. {% endif %}
  16. {% if type_appel == "mission"%}
  17.     {% set type_appel = "Appel à manifestation d'intérêt" %}
  18. {% else %}
  19.     {% set type_appel = "Appel à projet" %}
  20. {% endif %}
  21. <div class="preview-header">
  22.     {% if img is defined and img is not empty %}
  23.         {% include "blocks/previews/img/image.html.twig" %}
  24.     {% else %}
  25.         {% include "blocks/previews/img/default-image.html.twig" %}
  26.     {% endif %}
  27.     <div class="background-color-blue"></div>
  28. </div>
  29. <div class="preview-content dflex fdc w100">
  30.     <a href="{{ sulu_content_path(routePath) }}" class="cblack nodeco">
  31.         <div class="fw500 fs20 preview-h3 lh28">{{ title }}</div>
  32.     </a>
  33.     {% include "blocks/previews-from-controller/blocks/categories.html.twig" %}
  34.     <div>
  35.         {% if structure is defined and structure is not empty %}
  36.             <div class="enterprise dflex aife mb-1em mt-1em">
  37.                 <img src="/resources/img/offres/trunks-icon.svg" alt="Entreprise" width="16" height="16">
  38.                 {{ structure }}
  39.             </div>
  40.         {% endif %}
  41.         {% if type_appel is defined and type_appel is not empty %}
  42.             <div class="type-appel dflex aife mb-1em mt-1em">
  43.                 <img src="/resources/img/aapami/aapami-icon.svg" alt="Appel" width="15" height="16">
  44.                 {{ type_appel }}
  45.             </div>
  46.         {% endif %}
  47.         {% if limit_date is defined and limit_date is not empty %}
  48.             <div class="timeanddate dflex mb-1em mt-1em">
  49.                 <div class="time dflex aic">
  50.                     <img src="/resources/img/aapami/calendar-icon.svg" alt="Date" width="16" height="16">
  51.                     Date limite de candidature
  52.                     {{ limit_date|format_datetime("short", "none") }}
  53.                 </div>
  54.             </div>
  55.         {% endif %}
  56.     </div>
  57.     <span class="cgrey fs14 lh20 mta taright">Publié le
  58.         {{ article.authored|format_datetime('short', 'none', locale='fr') }}
  59.     </span>
  60. </div>