xref: /webtrees/resources/views/modules/faq/show.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
67c2c99faSGreg Roachuse Illuminate\Support\Collection;
77c2c99faSGreg Roach
87c2c99faSGreg Roach/**
936779af1SGreg Roach * @var Collection<int,object> $faqs
107c2c99faSGreg Roach * @var string                 $title
117c2c99faSGreg Roach */
12d70512abSGreg Roach
13d70512abSGreg Roach?>
14dd6b2bfcSGreg Roach
15dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
16dd6b2bfcSGreg Roach
17dd6b2bfcSGreg Roach<table class="faq">
18dd6b2bfcSGreg Roach    <?php foreach ($faqs as $id => $faq) : ?>
19dd6b2bfcSGreg Roach    <tr>
20dd6b2bfcSGreg Roach        <td style="padding: 5px;">
21dd6b2bfcSGreg Roach            <a href="#faq<?= e($id) ?>"><?= e($faq->header) ?></a>
22dd6b2bfcSGreg Roach        </td>
23dd6b2bfcSGreg Roach    </tr>
24dd6b2bfcSGreg Roach    <?php endforeach ?>
25dd6b2bfcSGreg Roach</table>
26dd6b2bfcSGreg Roach
27dd6b2bfcSGreg Roach<?php foreach ($faqs as $id => $faq) : ?>
28dd6b2bfcSGreg Roach    <hr>
29dd6b2bfcSGreg Roach    <div class="faq_title" id="faq<?= $id ?>">
30dd6b2bfcSGreg Roach        <?= e($faq->header) ?>
31dd6b2bfcSGreg Roach        <div class="faq_top faq_italic">
32dd6b2bfcSGreg Roach            <a href="#content"><?= I18N::translate('back to top') ?></a>
33dd6b2bfcSGreg Roach        </div>
34dd6b2bfcSGreg Roach    </div>
35dd6b2bfcSGreg Roach    <div class="faq_body">
36c5b48766SGreg Roach        <?= str_starts_with($faq->faqbody, '<') ? $faq->faqbody : nl2br(e($faq->faqbody), false) ?>
37dd6b2bfcSGreg Roach    </div>
38dd6b2bfcSGreg Roach<?php endforeach ?>
39