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
398 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>
2015-09-21 21:29:57 +02:00
<?php wp_nav_menu( array( 'theme_location' => 'landing-menu', 'container' => false ) ); ?>
2015-09-19 00:03:57 +02:00
</nav>
</div>
</header>
2015-09-21 21:29:57 +02:00
<?php require 'content-main.php'; ?>
2015-09-19 00:03:57 +02:00
<?php get_footer(); ?>