aboutsummaryrefslogtreecommitdiff
path: root/app/views/privacy/landing.php
blob: 3382b990fff7282108d6273cc6910ceb8afb4417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<ul class="boxed-grid">
<? foreach ($sections as $key => $row): ?>
    <li>
        <a href="<?= $controller->link_for("privacy/index/{$user_id}/{$key}") ?>" <? if (Request::isDialog()) echo 'data-dialog="size=big"'; ?>>
            <h3>
                <?= $row['icon']->asImg(false) ?>
                <?= htmlReady($row['title']) ?>
            </h3>
            <p>
                <?= htmlReady($row['description']) ?>
            </p>
        </a>
    </li>
<? endforeach; ?>

<!--
    this is pretty ugly but we need to spawn some empty elements so that the
    last row of the flex grid won't be messed up if the boxes don't line up
-->
    <li></li><li></li><li></li>
    <li></li><li></li><li></li>
</ul>