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

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

  <?php if (empty($this->articles)): ?>
    <p class="empty"><?= $this->empty ?></p>
  <?php else: ?>
<div class="row no-gutters justify-content-between">
    <?= implode('', $this->articles) ?>
</div>
    <?= $this->pagination ?>
  <?php endif; ?>

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