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

<div class="slick-slider-slide slide_<?= $this->id ?>">
  <?php if ($this->src): ?>
    <div class="slick-slider-slide-image"></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(); ?>