blob: 0894e5f318143b27b0c4d91619ed97bd10a1e4ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<input type="checkbox" id="cb-toc-close"/>
<article class="toc_overview toc_transform" id="toc">
<header id="toc_header">
<h1 id="toc_h1"><?= sprintf(_('Inhalt (%u Elemente)'), htmlReady($root->countAllChildren())) ?></h1>
<label for="cb-toc" class="check-box enter-accessible" title="<?= _('Schließen')?>" tabindex="0">
<?= Icon::create('decline')->asSvg(24) ?>
</label>
</header>
<section>
<ul class="toc">
<?= $this->render_partial('toc/_toc-item-list', ['item' => $root]) ?>
</ul>
</section>
</article>
|