blob: 75dcc2cc9f8a720877c2dd8afe0e80755461d81e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<section id="login-faq-content-wrapper">
<header class="login-box-header">
<h2><?= htmlReady(Config::get()->LOGIN_FAQ_TITLE) ?></h2>
</header>
<div class="login-faq-content">
<? foreach ($faq_entries as $entry): ?>
<article class="studip toggle">
<header>
<h1><a href="#"><?= htmlReady($entry->title) ?></a></h1>
</header>
<section><?= formatReady($entry->description) ?>
</section>
</article>
<? endforeach ?>
</div>
</section>
|