-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-full-width.php
More file actions
executable file
·34 lines (27 loc) · 818 Bytes
/
Copy pathpage-full-width.php
File metadata and controls
executable file
·34 lines (27 loc) · 818 Bytes
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
<?php
/**
* Template Name: Full-width Page
* Description: A full-width template with no sidebar
*
* @package WordPress
* @subpackage WP-Bootstrap
* @since WP-Bootstrap 0.1
*/
get_header(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="row">
<div class="container">
<?php if (function_exists('bootstrapwp_breadcrumbs')) bootstrapwp_breadcrumbs(); ?>
</div><!--/.container -->
</div><!--/.row -->
<div class="container">
<!-- Masthead
================================================== -->
<header class="jumbotron subhead" id="overview">
<h1><?php the_title();?></h1>
</header>
<div class="row content">
<?php the_content();?>
<?php endwhile; // end of the loop. ?>
</div><!-- .row content -->
<?php get_footer(); ?>