您最多选择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(); ?>