templates/site/blog/actualite.html.twig line 1

Open in your IDE?
  1. {% extends "site/base.html.twig" %}
  2. {% block title %}ABCM - Détail d'une actualité{% endblock %}
  3. {% block content %}
  4.     {% set hasPhoto = (actualite.photo is not empty) %}
  5.     <section id="banner" class="z-0 h-80 relative w-full">
  6.         <img class="w-full h-full object-cover object-bottom" src="{{ hasPhoto ? ('actualites/'~actualite.photo)|imagine_filter('tm'): asset('/img/tmp/actu-haguenau.jpg') }}" alt="">
  7.         <div class="z-10 md:top-40p lg:top-1/3 absolute y-center lg:transform-none sm:left-28 lg:left-24 xl:left-64 text-white
  8.         px-8 sm:px-0">
  9.             <h1 class="uppercase text-white text-3xl sm:text-4xl leading-8 tracking-wider mb-2">{{  actualite.titre }}</h1>
  10.             <p class="uppercase leading-6 text-xl tracking-wider">{{ actualite.date|format_datetime(locale='fr',pattern="d MMMM") }}</p>
  11.         </div>
  12.     </section>
  13.     <section id="detail-actu" class="pb-24 px-8 lg:px-4 xl:px-44 w-full">
  14.         <div id="page-type-content" class="flex flex-col">
  15.             <div id="text-actu" class="bg-white h-full pt-12 z-10 sm:-mt-20 sm:px-20 rounded-2xl font-body font-semibold tracking-wide leading-7">
  16.                 {{ actualite.texte |raw }}
  17.             </div>
  18.             {% if hasPhoto %}
  19.                 <div class="mt-12 sm:px-20 w-full h-112 lg:h-132">
  20.                     <img alt="" class="w-full h-full object-contain object-left" src="{{ ('actualites/'~actualite.photo)|imagine_filter('tm') }}">
  21.                 </div>
  22.             {% endif %}
  23.         </div>
  24.         <div class="w-full sm:px-20 lg:w-auto">
  25.             {% set route = (actualite.idCat1.id == '2')?'offres_emploi':'actualites' %}
  26.             <a href="{{ path(route) }}" class="btn mt-8 rounded-full transitioning">
  27.                 {% if (actualite.idCat1.id == '2') %}
  28.                     {{ 'LG_RETOUR_OFFRES'|trans({'fr':'Retour à la liste des offres d\'emploi'}) }}
  29.                 {% else %}
  30.                     {{ 'LG_RETOUR_ACTUALITES'|trans({'fr':'Retour à la liste des actualités'}) }}
  31.                 {% endif %}
  32.             </a>
  33.         </div>
  34.     </section>
  35. {% endblock %}