1
0
mirror of https://github.com/ascribe/wp-theme synced 2025-02-08 10:26:43 +01:00
wp-theme/template-tour.php
2015-09-18 16:03:57 -06:00

21 lines
409 B
PHP

<?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(); ?>