2026-02-11 15:28:40 +01:00
|
|
|
<?php snippet('header') ?>
|
2026-02-26 17:02:34 +01:00
|
|
|
<main class="main__single">
|
|
|
|
|
|
|
|
|
|
<header class="page__header">
|
|
|
|
|
<h2 class="page__title"><?= $page->title()->esc() ?></h2>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
<?php $definitions = $page->definitions()->toStructure() ?>
|
|
|
|
|
<?php if ($definitions->isNotEmpty()): ?>
|
|
|
|
|
<dl class="dl-table" id="legal-notices__dl">
|
|
|
|
|
<?php foreach ($definitions as $item): ?>
|
|
|
|
|
<div class="dl__group">
|
|
|
|
|
<dt><?= $item->term()->esc() ?></dt>
|
|
|
|
|
<dd><?= $item->definition() ?></dd>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endforeach ?>
|
|
|
|
|
</dl>
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
<?php if ($page->body()->isNotEmpty()): ?>
|
|
|
|
|
<div class="page__content">
|
|
|
|
|
<?= $page->body()->toBlocks() ?>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
</main>
|
|
|
|
|
<?php snippet('footer') ?>
|