Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- <?php $this->extend('block_searchable'); ?>
- <?php $this->block('content'); ?>
- <?php if ($this->floating == 'left' || $this->floating == 'right'): ?>
- <div class="row <?= $this->floating ?>">
- <?php endif; ?>
- <?php if (!$this->addBefore): ?>
- <div class="text-wrapper">
- <?= $this->text ?>
- </div>
- <?php endif; ?>
-
- <?php if ($this->addImage): ?>
- <div class="image">
- <?php $this->insert('image', $this->arrData); ?>
- </div>
- <?php endif; ?>
-
- <?php if ($this->addBefore): ?>
- <div class="text-wrapper">
- <?= $this->text ?>
- </div>
- <?php endif; ?>
- <?php if ($this->floating == 'left' || $this->floating == 'right'): ?>
- </div>
- <?php endif; ?>
- <?php $this->endblock(); ?>
|