mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-22 17:23:55 +01:00
21 lines
398 B
PHP
21 lines
398 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' => 'landing-menu', 'container' => false ) ); ?>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<?php require 'content-main.php'; ?>
|
|
|
|
<?php get_footer(); ?>
|