Skip to content

Instantly share code, notes, and snippets.

@sunilw
Created July 28, 2014 21:50
Show Gist options
  • Save sunilw/64decbee01f482c687f5 to your computer and use it in GitHub Desktop.
Save sunilw/64decbee01f482c687f5 to your computer and use it in GitHub Desktop.
<?php
/**
* Template Name: Blerter Register
*/
get_header();?>
<div class="page-content">
<?php if ( have_posts() ) { ?>
<div class="container">
<div class="nrow post">
<?php while ( have_posts() ) { ?>
<?php the_post(); ?>
<?php the_content() ; ?>
<?php } ?>
</div><!-- ENDS .nrow -->
</div> <!-- ENDS .container -->
<?php } // ends page loop ?>
<section id="app-links">
<div class="nrow group">
<article class="app-cta first">
<div class="app-button">
<a href="https://itunes.apple.com/nz/app/blerter/id630319471?mt=8#">
<img src="<?php echo get_template_directory_uri() . "/sw-inc/img/buttons/app-applestore.png" ?>"
alt=""/>
</a>
</div>
<p><a href="https://itunes.apple.com/nz/app/blerter/id630319471?mt=8#" target="_blank"
class=" text-link available">GET IT NOW</a>
</p>
</article>
<article class="app-cta">
<div class="app-button">
<a href="#">
<img src="<?php echo get_template_directory_uri() . "/sw-inc/img/buttons/app-gplay.png" ?>"
alt="#"/>
</a>
</div>
<p><a href="#" class=" text-link coming-soon">COMING SOON</a></p>
<div class="form_notify">
<?php echo do_shortcode('[gravityform id="2"]') ; ?>
</div>
<div class="req">Enter business email and hit enter to get notified</div>
</article>
<article class="app-cta last">
<div class="app-button">
<a href="#">
<img src="<?php echo get_template_directory_uri() . "/sw-inc/img/buttons/app-windows.png" ?>"
alt=""/>
</a>
</div>
<p><a href="#" class=" text-link coming-soon">COMING SOON</a></p>
<div class="form_notify">
<?php echo do_shortcode('[gravityform id="3"]') ; ?>
</div>
<div class="req">Enter business email and hit enter to get notified</div>
</article>
</div> <!-- ENDS .nrow -->
</section> <!-- ENDS #app-links -->
<div class="container">
<div id="contact-form" class="contact-row">
<div class="nrow swgf-contact">
<?php echo do_shortcode('[gravityform id="1" name="contact-form"]') ; ?>
</div>
</div> <!-- ENDS .devices-image-container -->
</div> <!-- ENDS .contact-row -->
</div> <!-- ENDS .container -->
</div> <!-- ENDS .page-content -->
<?php include('bottom-cta.php') ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment