mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-22 17:23:55 +01:00
35 lines
1022 B
PHP
35 lines
1022 B
PHP
<?php
|
|
/*
|
|
Template Name: Landing Page / Product Tour
|
|
*/
|
|
require 'controller/init.php';
|
|
|
|
get_header();
|
|
$controller = new Controller();
|
|
|
|
$bgImage = get_field('header_background_image')['url'];
|
|
$headerTagline = get_field('header_tagline');
|
|
$buttonText = get_field('create_account_button_text');
|
|
|
|
?>
|
|
|
|
<header style="background-image:url(<?php echo $bgImage; ?>)">
|
|
<div class="centered-header">
|
|
<img src="<?php echo WPTHEME_TEMPLATE_URL; ?>/images/logo/logo-white.png">
|
|
<div class="app-links">
|
|
<a href="<?php echo $signInLink; ?>">Sign In</a> / <a href="<?php echo $signUpLink; ?>">Sign Up</a>
|
|
</div>
|
|
<nav>
|
|
<?php wp_nav_menu( array( 'theme_location' => 'landing-menu', 'container' => false ) ); ?>
|
|
</nav>
|
|
<section class="description">
|
|
<h1><?php echo $headerTagline; ?></h1>
|
|
<a href="<?php echo $signUpLink; ?>" class="button blue"><?php echo $buttonText; ?></a>
|
|
</section>
|
|
</div>
|
|
<div class="chevron-divider"></div>
|
|
</header>
|
|
|
|
<?php require 'content-main.php'; ?>
|
|
|
|
<?php get_footer(); ?>
|