Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

27 строки
720 B

  1. <?php $this->extend('block_searchable'); ?>
  2. <?php $this->block('content'); ?>
  3. <?php if ($this->floating == 'left' || $this->floating == 'right'): ?>
  4. <div class="row <?= $this->floating ?>">
  5. <?php endif; ?>
  6. <?php if (!$this->addBefore): ?>
  7. <div class="text-wrapper">
  8. <?= $this->text ?>
  9. </div>
  10. <?php endif; ?>
  11. <?php if ($this->addImage): ?>
  12. <div class="image">
  13. <?php $this->insert('image', $this->arrData); ?>
  14. </div>
  15. <?php endif; ?>
  16. <?php if ($this->addBefore): ?>
  17. <div class="text-wrapper">
  18. <?= $this->text ?>
  19. </div>
  20. <?php endif; ?>
  21. <?php if ($this->floating == 'left' || $this->floating == 'right'): ?>
  22. </div>
  23. <?php endif; ?>
  24. <?php $this->endblock(); ?>