templates/includes/content/content_top.html.twig line 1

Open in your IDE?
  1. {% block body %}
  2.     {% if isHome is defined %}
  3.         <div class="container">
  4.             <div class="row">
  5.                 <div class="col-xl-6">
  6.                     <h1 class="title animate__animated" data-controller="sentences" data-animation="animate__fadeIn" data-delay="1000" invisible>L'agence digitale pour vos projets <br /><strong>{% if sentences is not empty %}{% for sentence in sentences %}<span data-sentences-target="sentence" data-color="{% if sentence.color is null %}#ffffff{% else %}{{ sentence.color }}{% endif %}" hidden>{{ sentence.name }}</span>{% endfor %}{% endif %}<span id="sentencesBloc" data-sentences-target="sentenceScope"></span></strong></h1>
  7.                     {{ mod_shortcuts|raw }}
  8.                 </div>
  9.                 <div class="col-xl-6 content_bubbles">
  10.                     {% if page.image is not null %}
  11.                         <img src="{{ page.image }}" alt="{{ page.name }}" class="img-fluid img-home" width="859" height="556" />
  12.                     {% endif %}
  13.                     {% include '/public/images/animations/orangebubble.svg' %}
  14.                     {% include '/public/images/animations/redbubble.svg' %}
  15.                 </div>
  16.             </div>
  17.         </div>
  18.         {% if mod_social is defined %}
  19.             <div class="mod_socials_abs">
  20.             {{ mod_social|raw }}
  21.             </div>
  22.             {% if pag_contact is defined %}
  23.                 <a href="{{ path('pages_detail', {'rewrite':pag_contact.rewrite}) }}" class="link_item_contact">
  24.                     J'ai un projet <img class="img-fluid" src="/images/bulle_captusite.svg" alt="Bulle Captusite" width="48" height="48" />
  25.                 </a>
  26.             {% endif %}
  27.         {% endif %}
  28.         <p class="text-abs">Expert en création d'outils numériques sur-mesure</p>
  29.         {% endif %}
  30. {% endblock %}