2015-09-19 00:03:57 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Template Name: Landing Page / Product Tour
|
|
|
|
*/
|
2015-09-22 01:02:29 +02:00
|
|
|
require 'controller/init.php';
|
|
|
|
|
2015-09-19 00:03:57 +02:00
|
|
|
get_header();
|
2015-09-22 01:02:29 +02:00
|
|
|
|
|
|
|
$bgImage = get_field('header_background_image')['url'];
|
|
|
|
$headerTagline = get_field('header_tagline');
|
|
|
|
$buttonText = get_field('create_account_button_text');
|
2015-09-25 07:55:31 +02:00
|
|
|
$controller = new Controller();
|
2015-09-22 01:02:29 +02:00
|
|
|
|
2015-09-19 00:03:57 +02:00
|
|
|
?>
|
|
|
|
|
2015-09-22 01:02:29 +02:00
|
|
|
<header style="background-image:url(<?php echo $bgImage; ?>)">
|
|
|
|
<div class="centered-header">
|
2015-09-25 07:55:31 +02:00
|
|
|
<a href="<?php echo get_bloginfo('wpurl');?>"><img src="<?php echo WPTHEME_TEMPLATE_URL; ?>/images/logo/logo-white.png" class="logo"></a>
|
2015-09-22 01:02:29 +02:00
|
|
|
<div class="app-links">
|
|
|
|
<a href="<?php echo $signInLink; ?>">Sign In</a> / <a href="<?php echo $signUpLink; ?>">Sign Up</a>
|
|
|
|
</div>
|
2015-09-19 00:03:57 +02:00
|
|
|
<nav>
|
2015-09-24 08:24:34 +02:00
|
|
|
for Artists & Creators
|
|
|
|
<?php //wp_nav_menu( array( 'theme_location' => 'landing-menu', 'container' => false ) ); ?>
|
2015-09-19 00:03:57 +02:00
|
|
|
</nav>
|
2015-09-22 01:02:29 +02:00
|
|
|
<section class="description">
|
|
|
|
<h1><?php echo $headerTagline; ?></h1>
|
2015-09-24 08:24:34 +02:00
|
|
|
<a href="<?php echo $signUpLink; ?>" class="button blue-overPic"><?php echo $buttonText; ?></a>
|
2015-09-22 01:02:29 +02:00
|
|
|
</section>
|
2015-09-19 00:03:57 +02:00
|
|
|
</div>
|
2015-09-22 01:02:29 +02:00
|
|
|
<div class="chevron-divider"></div>
|
2015-09-19 00:03:57 +02:00
|
|
|
</header>
|
|
|
|
|
2015-09-25 07:55:31 +02:00
|
|
|
<main>
|
|
|
|
<?php echo $controller->loopSubtemplates(); ?>
|
|
|
|
</main>
|
2015-09-19 00:03:57 +02:00
|
|
|
|
|
|
|
<?php get_footer(); ?>
|