32 lines
663 B
PHP
32 lines
663 B
PHP
<?php
|
|
/**
|
|
* Template Name: Blank Page Template
|
|
*
|
|
* Template for displaying a blank page.
|
|
*
|
|
* @package understrap
|
|
*/
|
|
|
|
// Exit if accessed directly.
|
|
defined( 'ABSPATH' ) || exit;
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="profile" href="http://gmpg.org/xfn/11">
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
while ( have_posts() ) {
|
|
the_post();
|
|
get_template_part( 'loop-templates/content', 'blank' );
|
|
}
|
|
wp_footer();
|
|
?>
|
|
</body>
|
|
</html>
|