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

21 lines
409 B
PHP
Raw Normal View History

2015-09-19 00:03:57 +02:00
<?php
/*
Template Name: Landing Page / Product Tour
*/
get_header();
$controller = new Controller();
?>
<header>
<div class="centered">
<?php echo $logo; ?>
<nav>
<span class="icon-menu mobile-only"></span>
<?php wp_nav_menu( array( 'theme_location' => 'header-menu', 'container' => false ) ); ?>
</nav>
</div>
</header>
<?php get_template_part( 'content', 'main' ); ?>
<?php get_footer(); ?>