templates/front/blocks/block-video-player.twig line 1

Open in your IDE?
  1. {% set sec = get_section_data(entity, app.request.locale|default('pl')) %}
  2. {% if entity.translations.pl.sectionMedia is not null %}
  3.     <section class="parent-container healthy-forever">
  4.         <video src="{{ (CONST_UPLOADS_VIDEO ~ entity.translations.pl.sectionMedia.fileName|default('')) }}" autoplay="" muted="" loop="" playsinline=""></video>
  5.         <div class="mx-auto">
  6.             <h6 class="gilroy pb-60 text-{{ sec.titleColor }}">{{ sec.title|default('') }}</h6>
  7.             <p class="f-24 lh-170">{{ sec.contentFirst|default('') }}</p>
  8.         </div>
  9.     </section>
  10. {% endif %}