1
0
mirror of https://github.com/ascribe/wp-theme synced 2024-12-22 17:23:55 +01:00
wp-theme/template-header.php

26 lines
645 B
PHP
Raw Normal View History

2015-09-25 07:55:31 +02:00
<?php
/**
* Created by PhpStorm.
* User: sarahetter
* Date: 15-09-24
* Time: 5:32 PM
*/
2015-10-15 03:41:36 +02:00
require 'controller/init.php';
2015-09-25 07:55:31 +02:00
?>
<header>
<div class="centered-header">
<a href="<?php echo get_bloginfo('wpurl');?>"><img src="<?php echo WPTHEME_TEMPLATE_URL; ?>/images/logo/logo-black.png" class="logo"></a>
<div class="app-links">
<a href="<?php echo $signInLink; ?>">Sign In</a> / <a href="<?php echo $signUpLink; ?>">Sign Up</a>
</div>
2015-10-16 05:27:03 +02:00
<nav class="tour-switcher"><?php wp_nav_menu( array(
'theme_location' => 'landing-menu',
'container' => false
)); ?>
</nav>
2015-09-25 07:55:31 +02:00
</div>
</header>
<div class="chevron-divider"></div>