Created
October 25, 2018 12:38
-
-
Save thexpand/39524d4ebe70c4c79de6362af4a63ab4 to your computer and use it in GitHub Desktop.
Menu component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @var \Application\Component\Header $this | |
*/ | |
use Navigation\Component\MegaMenu; | |
?> | |
<header> | |
<div class="inner"> | |
<div class="logo"> | |
<a href="/" rel="home"> | |
<img src="/images/logo.png" alt="Logo"> | |
</a> | |
</div> | |
<div class="navigation"> | |
<?= $this->component()->render(MegaMenu::class) ?> | |
</div> | |
</div> | |
</header> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment