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.
understrap/page-templates/blank.php

37 lines
1021 B
PHP
Raw Normal View History

<?php
/**
* Template Name: Blank Page Template
*
* Template for displaying a blank page.
*
* @package understrap
*/
2016-11-21 18:19:15 +00:00
2018-09-10 21:59:04 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
2016-11-21 18:19:15 +00:00
<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">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title"
2017-04-15 12:18:20 +00:00
content="<?php bloginfo( 'name' ); ?> - <?php bloginfo( 'description' ); ?>">
2016-11-21 18:19:15 +00:00
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
<body>
<?php while ( have_posts() ) : the_post(); ?>
2016-11-21 18:19:15 +00:00
<?php get_template_part( 'loop-templates/content', 'blank' ); ?>
2016-11-21 18:19:15 +00:00
<?php endwhile; // end of the loop. ?>
<?php wp_footer(); ?>
</body>
</html>