<?php $this->extend('block_searchable'); ?>

<?php $this->block('content'); ?>
<div class="row no-gutters justify-content-between">
  <?php if (!$this->addBefore): ?>
    <div class="col col-24">
    <?= $this->text ?>
    </div>
  <?php endif; ?>

  <?php if ($this->addImage): ?>
    <div class="col-lg-7 col-24 order-last">
    <?php $this->insert('image', $this->arrData); ?>
  </div>
  <?php endif; ?>

  <?php if ($this->addBefore): ?>
    <div class="col-lg-16 col-24">
    <?= $this->text ?>
    </div>
  <?php endif; ?>
</div>
<?php $this->endblock(); ?>
