Last active
December 4, 2016 20:14
-
-
Save barbareshet/be5478c31fc44cab99f44aa8db730ebf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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