This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2016-06-18 11:41:59 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Template Name: Empty Page Template
|
|
|
|
*
|
|
|
|
* Template for displaying a page just with the header and footer area and a "naked" content area in between. Good for landingpages and other types of pages where you want to add a lot of custom markup
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
|
|
|
|
2016-11-01 15:25:21 +00:00
|
|
|
get_header();
|
|
|
|
?>
|
2016-06-18 11:41:59 +00:00
|
|
|
|
2016-11-01 15:25:21 +00:00
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
2016-06-18 11:41:59 +00:00
|
|
|
|
2016-11-01 15:25:21 +00:00
|
|
|
<?php get_template_part( 'loop-templates/content', 'empty' ); ?>
|
2016-06-18 11:41:59 +00:00
|
|
|
|
2016-11-01 15:25:21 +00:00
|
|
|
<?php endwhile; // end of the loop. ?>
|
2016-06-18 11:41:59 +00:00
|
|
|
|
2016-11-01 15:25:21 +00:00
|
|
|
<?php get_footer(); ?>
|