summaryrefslogtreecommitdiff
path: root/dist/page-templates/empty.php
diff options
context:
space:
mode:
Diffstat (limited to 'dist/page-templates/empty.php')
-rw-r--r--dist/page-templates/empty.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/dist/page-templates/empty.php b/dist/page-templates/empty.php
deleted file mode 100644
index 2c11ff1..0000000
--- a/dist/page-templates/empty.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?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
- */
-
-if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly.
-}
-
-get_header();
-
-while ( have_posts() ) : the_post();
- get_template_part( 'loop-templates/content', 'empty' );
-endwhile;
-
-get_footer();