25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php $this->extend('block_unsearchable'); ?>
-
- <?php $this->block('content'); ?>
-
- <?php foreach ($this->faq as $category): ?>
- <h2><?= $category['headline'] ?></h2>
- <ul class="<?= $category['class'] ?>">
- <?php foreach ($category['items'] as $faq): ?>
- <li class="<?= $faq['class'] ?>">
- <h3><?= $faq['question'] ?></h3>
- <div class="answer">
- <?= $faq['answer'] ?>
- </div>
- </li>
- <?php endforeach; ?>
- </ul>
- <?php endforeach; ?>
-
- <?php $this->endblock(); ?>
|