<?php $this->block('content'); ?>

<div class="slick-slider-slide slide_<?= $this->id ?>">
  <?php if ($this->src || count($this->videoFiles)): ?>
    <div class="slick-slider-slide-image">
      <?php if ($this->videoFiles): ?>
        <video class="no-mejs" autoplay loop muted>
          <?php foreach ($this->videoFiles as $video): ?>
            <source src="<?php echo TL_FILES_URL . $video->path ?>" type="video/<?php echo $video->extension ?>">
          <?php endforeach ?>
        </video>
      <?php endif; ?>
    </div>

    <style>
      <?= $this->backgroundStyle ?>
      <?php if ($this->backgroundStyleResponsive): ?><?= $this->backgroundStyleResponsive ?><?php endif; ?>
    </style>
  <?php endif; ?>
  <div class="slide-content">

  <?php if ($this->text): ?>
    <span class="slide-text"><?= $this->text ?></span>
  <?php endif; ?>

  </div>
  <?php if ($this->link): ?>
    <a class="slide-url" href="<?= $this->link ?>"></a>
  <?php endif; ?>
</div>

<?php $this->endblock(); ?>