72 lines
2.6 KiB
PHP
72 lines
2.6 KiB
PHP
<?php
|
|
// -------------------------------------------
|
|
// kirby snippet FOR jannikbeyerstedt.de
|
|
|
|
// copyright: Jannik Beyerstedt | https://jannikbeyerstedt.de
|
|
// license: http://www.gnu.org/licenses/gpl-3.0.txt GPLv3 License
|
|
// -------------------------------------------
|
|
|
|
$subnav = false;
|
|
if ($page->depth() == 1) {
|
|
$baseSec = $page;
|
|
if ( $page->isVisible() && $baseSec->hasVisibleChildren() && $page->template() != 'blog' ) {
|
|
$subnav = true;
|
|
}
|
|
}else if ($page->depth() == 2) {
|
|
$baseSec = $page->parent();
|
|
if ( $page->isVisible() && $baseSec->hasVisibleChildren() && $page->template() != 'blogarticle' ) {
|
|
$subnav = true;
|
|
}
|
|
}
|
|
?>
|
|
|
|
<div class="collapse hidden-sm-up" id="exCollapsingNavbar">
|
|
<div class="bg-inverse p-a-1">
|
|
<nav>
|
|
<ul class="nav mobileNav">
|
|
<li><a href="<?php echo $site->url()?>">Home</a></li>
|
|
<?php foreach ($site->children()->visible() as $p) : ?>
|
|
<li><a href="<?php echo $p->url()?>" <?php echo ($page == $p)?'class="active"':'' ?>><?php echo $p->title() ?></a></li>
|
|
<?php if ($p->hasVisibleChildren() && $p->template() != 'blog') : ?>
|
|
<ul class="">
|
|
<?php foreach ($p->children()->visible() as $c) : ?>
|
|
<li><a href="<?php echo $c->url()?>" <?php echo ($page == $c)?'class="active"':'' ?>><?php echo $c->title() ?></a></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
|
|
<header class="section">
|
|
<div class="container">
|
|
<?php if ($img = $site->images()->find($site->title_image())) : ?>
|
|
<a class="logo" href="<?php echo url() ?>">
|
|
<img src="<?php echo $site->url().'/content/'.$site->title_image()->html() ?>" alt="Logo">
|
|
</a>
|
|
<?php endif; ?>
|
|
|
|
<nav aria-hidden="true">
|
|
<button class="navbar-toggler hidden-sm-up" type="button" data-toggle="collapse" data-target="#exCollapsingNavbar">
|
|
Menü
|
|
</button>
|
|
|
|
<ul class="nav hidden-xs-down <?php echo ($subnav)?'main':'home' ?>">
|
|
<?php foreach ($site->children()->visible() as $p) : ?>
|
|
<a href="<?php echo $p->url()?>" <?php echo ($page == $p || $page->parent() == $p)?'class="active"':'' ?>><li><?php echo $p->title() ?></li></a>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
|
|
<?php if($subnav) : ?>
|
|
<ul class="nav hidden-xs-down second">
|
|
<?php foreach ($baseSec->children()->visible() as $p) : ?>
|
|
<a href="<?php echo $p->url()?>" <?php echo ($page == $p)?'class="active"':'' ?>><li><?php echo $p->title() ?></li></a>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
</nav>
|
|
</div>
|
|
</header>
|