templates/pages/janina.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block content %}
  3.     {% if content.video is not null %}
  4.         {{ include('@components/video-section.html.twig', {
  5.             url: content.video.url,
  6.             background: 'grey',
  7.             order: {
  8.                 video: '1'
  9.             }
  10.         }) }}
  11.     {% endif %}
  12.     {% if content.discountText is defined and content.discountText != null %}
  13.     <div class="discount-section bg-yellow py-4">
  14.         <div class="container">
  15.             <div class="col-12 text-center">
  16.                 <a class="fs-4" target="_blank" href="https://shop.hebammen-azh.de/mein-hebammen-azh">
  17.                     {{ content.discountText|raw }}
  18.                 </a>
  19.             </div>
  20.         </div>
  21.     </div>
  22.     {% endif %}
  23.     <div class="container">
  24.         <div class="row mt-6">
  25.             <div class="col-12">
  26.                 <h2 class="point light mb-5">{{ content.testimonialsTitle|raw }}</h2>
  27.             </div>
  28.         </div>
  29.         <div class="row mb-6">
  30.             <div class="col-12 col-lg-4 mb-4 mb-lg-0 text-center text-lg-start">
  31.                 {{ include('@components/button.html.twig', {
  32.                     withIcon: false,
  33.                     text: content.textLink1|default(''),
  34.                     link: {
  35.                         href: content.link1|default('')
  36.                     }
  37.                 }) }}
  38.             </div>
  39.             <div class="col-12 col-lg-4 mb-4 mb-lg-0 d-lg-flex justify-content-lg-center text-center">
  40.                 {{ include('@components/button.html.twig', {
  41.                     withIcon: false,
  42.                     text: content.textLink2|default(''),
  43.                     link: {
  44.                         href: content.link2|default('')
  45.                     }
  46.                 }) }}
  47.             </div>
  48.             <div class="col-12 col-lg-4 d-lg-flex justify-content-lg-end text-center">
  49.                 {{ include('@components/button.html.twig', {
  50.                     withIcon: false,
  51.                     text: content.textLink3|default(''),
  52.                     link: {
  53.                         href: content.link3|default('')
  54.                     }
  55.                 }) }}
  56.             </div>
  57.         </div>
  58.         <div class="row">
  59.             {% for testimonial in content.testimonials %}
  60.                 <div class="col-12 col-lg-6 mb-5">
  61.                     {{ include('@components/testimonial.html.twig', {
  62.                         text: testimonial.text
  63.                     }) }}
  64.                 </div>
  65.             {% endfor %}
  66.         </div>
  67.     </div>
  68.     {{ include('@components/we-consult-you-slider.html.twig', {
  69.         title: content.consultingTitle,
  70.         text: content.consultingText,
  71.         items: content.consulting,
  72.     }) }}
  73.     {{ include('@components/contact-box.html.twig') }}
  74. {% endblock %}