1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- ?>
- <a id="faq-top"></a>
- <?php print $questions_list ?>
- <br />
- <?php $key = 0; ?>
- <?php while ($key < $limit): ?>
- <?php ?>
- <div class="faq-question">
- <?php if (!empty($question_label)): ?>
- <strong class="faq-question-label">
- <?php print $question_label; ?>
- </strong>
- <?php endif; ?>
- <?php print $answers[$key]['question']; ?>
- </div> <!-- Close div: faq-question -->
- <div class="faq-answer">
- <?php if (!empty($answer_label)): ?>
- <strong class="faq-answer-label">
- <?php print $answer_label; ?>
- </strong>
- <?php endif; ?>
- <?php print $answers[$key]['body']; ?>
- <?php print $answers[$key]['links']; ?>
- </div> <!-- Close div: faq-answer -->
- <?php /* Increment $key to move on to the next position. */ ?>
- <?php $key++; ?>
- <?php endwhile; ?>
|