您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

20 行
541 B

  1. <?php $this->extend('block_unsearchable'); ?>
  2. <?php $this->block('content'); ?>
  3. <?php foreach ($this->faq as $category): ?>
  4. <h2><?= $category['headline'] ?></h2>
  5. <ul class="<?= $category['class'] ?>">
  6. <?php foreach ($category['items'] as $faq): ?>
  7. <li class="<?= $faq['class'] ?>">
  8. <h3><?= $faq['question'] ?></h3>
  9. <div class="answer">
  10. <?= $faq['answer'] ?>
  11. </div>
  12. </li>
  13. <?php endforeach; ?>
  14. </ul>
  15. <?php endforeach; ?>
  16. <?php $this->endblock(); ?>