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

<div class="slick-slider-slide slide_<?= $this->id ?>">
  <?php if ($this->src): ?>
    <div class="slick-slider-slide-image" style="<?= $this->backgroundStyle ?>"></div>
    <?php if ($this->minHeight): ?>
      <style>.slide_<?= $this->id ?>:before { content: ""; display: block; padding-top: <?= $this->minHeight ?>; float: left; }</style>
    <?php endif; ?>
  <?php endif; ?>
  <div class="slide-content">

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

  </div>
</div>

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