diff options
| author | Max | 2018-10-15 23:46:42 +0200 |
|---|---|---|
| committer | Max | 2018-10-15 23:46:42 +0200 |
| commit | 00c9709fd9763542e848f6278db8ba26af5c9886 (patch) | |
| tree | 92cb1c1ee4c467118e1e5a4c7e233d3feac6efa8 /page-templates/blank.php | |
| download | fuselkoenig_de-00c9709fd9763542e848f6278db8ba26af5c9886.tar.gz | |
Initial commit.
Diffstat (limited to 'page-templates/blank.php')
| -rw-r--r-- | page-templates/blank.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/page-templates/blank.php b/page-templates/blank.php new file mode 100644 index 0000000..42210d3 --- /dev/null +++ b/page-templates/blank.php @@ -0,0 +1,36 @@ +<?php +/** + * Template Name: Blank Page Template + * + * Template for displaying a blank page. + * + * @package understrap + */ + +if ( ! defined( 'ABSPATH' ) ) { + exit; // Exit if accessed directly. +} +?> +<!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"> + <meta name="mobile-web-app-capable" content="yes"> + <meta name="apple-mobile-web-app-capable" content="yes"> + <meta name="apple-mobile-web-app-title" + content="<?php bloginfo( 'name' ); ?> - <?php bloginfo( 'description' ); ?>"> + <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(); ?> + + <?php get_template_part( 'loop-templates/content', 'blank' ); ?> + +<?php endwhile; // end of the loop. ?> +<?php wp_footer(); ?> +</body> +</html> |
