Skip to content

Instantly share code, notes, and snippets.

@barbareshet
Last active December 4, 2016 20:14
Show Gist options
  • Save barbareshet/be5478c31fc44cab99f44aa8db730ebf to your computer and use it in GitHub Desktop.
Save barbareshet/be5478c31fc44cab99f44aa8db730ebf to your computer and use it in GitHub Desktop.
<?php
/**
* Template Name: landing Page
*
*
*/
get_header('lp');?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php if( have_posts() ): ?>
<?php while( have_posts() ) : the_post();?>
<h1><?php the_title();?></h1>
<div class="content">
<?php the_content();?>
</div>
<?php endwhile;?>
<?php endif;?>
</main><!-- .site-main -->
</div><!-- .content-area -->
<?php get_footer('lp');?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment