blob: 5b981433b8bc449199ca0f53088f928bbab05780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
/**
* @var Navigation[] $navigation
* @var Navigation[] $footer
* @var Navigation[] $quicklinks
*/
?>
<h2><?= _('Hauptnavigation') ?></h2>
<?= $this->render_partial('sitemap/navigation', ['navigation' => $navigation, 'needs_image' => true, 'style' => 'bold'])
?>
<h2><?= _('Zusatznavigation') ?></h2>
<?= $this->render_partial('sitemap/navigation', ['navigation' => $quicklinks, 'needs_image' => false, 'style' => 'bold'])
?>
<h2><?= _('Fußzeile') ?></h2>
<?= $this->render_partial('sitemap/navigation', ['navigation' => $footer, 'needs_image' => false, 'style' => 'bold'])
?>
|