templates/frontend/talk_about_us/index.html.twig line 1

Open in your IDE?
  1. {% extends 'frontend/base.html.twig' %}
  2. {% block metaTitle %}Dicono di Noi: Chi Parla di Astralpool?{% endblock %}
  3. {% block metaDescription %}Le varie testate online e cartacee che parlano di Astralpool. Dalla Gazzetta dello Sport a Piscineoggi.com{% endblock %}
  4. {% block body %}
  5.     <section class="space-top-2">
  6.         <div class="container">
  7.             <h1 class="display-5 fw-bold text-primary">Dicono di noi</h1>
  8.         </div>
  9.     </section>
  10.     <section class="space-2 space-lg-bottom-3">
  11.         <div class="container event-container">
  12.             <div class="row">
  13.                 {% for talkAboutUs in pagination %}
  14.                     <div class="col-lg-4 col-sm-6 space-bottom-1 mb-5">
  15.                         <figure class="media equal-3-4 mb-3">
  16.                             <span style="background-image: url('{{ talkAboutUs.cover.publicUrl }}')"></span>
  17.                         </figure>
  18.                         <h3 class="fw-bold">{{ talkAboutUs.title }}</h3>
  19.                         <div class="d-flex w-100 justify-content-between align-items-center">
  20.                             <p class="mb-0 fw-medium text-primary">
  21.                                 <span class="align-bottom pr-2">{{ svg_inject('calendar') }}</span>
  22.                                 {{ talkAboutUs.date|date('F')|trans }}
  23.                                 {{ talkAboutUs.date|date('m/Y') }}
  24.                             </p>
  25.                             <div>
  26.                                 {% if talkAboutUs.link %}
  27.                                 <a class="bg-light-primary text-primary fw-bold btn btn-sm" href="{{ talkAboutUs.link }}" target="_blank">Vai al sito</a>
  28.                                 {% endif %}
  29.                                 {% if talkAboutUs.document.path %}
  30.                                 <a href="{{ talkAboutUs.document.publicUrl }}" target="_blank" class="btn btn-primary btn-sm ms-2">Scarica</a>
  31.                                 {% endif %}
  32.                             </div>
  33.                         </div>
  34.                     </div>
  35.                 {% endfor %}
  36.             </div>
  37.             {% if pagination.count == 0 %}
  38.                 <div class="col-12 space-2">
  39.                     <p class="font-italic text-muted font-size-lg text-center">
  40.                         Non รจ presente nessun articolo
  41.                     </p>
  42.                 </div>
  43.             {% endif %}
  44.             <div class="mt-3 d-flex w-100 justify-content-center">
  45.                 {{ knp_pagination_render(pagination) }}
  46.             </div>
  47.         </div>
  48.     </section>
  49. {% endblock %}