1
0
Fork 0

[SITE] home and footer finished + nav for top level

This commit is contained in:
Jannik Beyerstedt 2016-04-03 00:24:34 +02:00
parent e98b1fc877
commit 74408319b5
17 changed files with 2033 additions and 24 deletions

View file

@ -6,10 +6,18 @@
// license: http://www.gnu.org/licenses/gpl-3.0.txt GPLv3 License
// -------------------------------------------
?>
<header class="section" id="header" role="banner">
<header class="section">
<div class="container">
<a class="logo" href="<?php echo url() ?>">
<h1 id="logo">Jannik Beyerstedt</h1>
<img src="" alt="Logo">
</a>
<nav>
<ul>
<?php foreach ($site->children()->visible() as $p) : ?>
<a href="<?php echo $p->url()?>"><li><?php echo $p->title() ?></li></a>
<?php endforeach; ?>
</ul>
</nav>
</div>
</header>