forked from themeblvd/jumpstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_blank.php
69 lines (46 loc) · 1.24 KB
/
template_blank.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/**
* Template Name: Blank Page
*
* WARNING: This template file is a core part of the
* Theme Blvd WordPress Framework. It is advised
* that any edits to the way this file displays its
* content be done with via actions, filters, and
* template parts.
*
* @author Jason Bobich <[email protected]>
* @copyright 2009-2017 Theme Blvd
* @package Jump_Start
* @subpackage Theme_Blvd
* @since Theme_Blvd 2.0.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<?php themeblvd_get_template_part( 'head' ); ?>
</head>
<body <?php body_class(); ?>>
<?php
/** This action is documented in header.php */
do_action( 'themeblvd_before' );
?>
<div id="blank-page">
<div class="wrap">
<div id="content" class="clearfix" role="main">
<div class="inner">
<?php themeblvd_content_top(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php themeblvd_get_template_part( 'page' ); ?>
<?php endwhile; ?>
<?php themeblvd_content_bottom(); ?>
</div><!-- .inner -->
</div><!-- #content -->
</div><!-- .wrap -->
</div><!-- #blank-page -->
<?php
/** This action is documented in footer.php */
do_action( 'themeblvd_after' );
?>
<?php wp_footer(); ?>
</body>
</html>