-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-standard-sidebar.php
42 lines (32 loc) · 1.29 KB
/
page-standard-sidebar.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
<?php
/* Template Name: Sidebar-Page Full Width
*/
?>
<?php get_header(); ?>
<div id="content">
<div class="container-fluid">
<div class="row">
<div id="main" class="clearfix col-sm-8 col-md-9" role="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">
<section class="post_content">
<?php the_content(); ?>
</section> <!-- end article section -->
</article> <!-- end article -->
<?php endwhile; ?>
<?php else : ?>
<article id="post-not-found">
<header>
<h1><?php _e("Not Found", "JD_BOOTSTRAP"); ?></h1>
</header>
<section class="post_content">
<p><?php _e("Sorry, but the requested resource was not found on this site.", "JD_BOOTSTRAP"); ?></p>
</section>
</article>
<?php endif; ?>
</div><!--/main-->
<?php get_sidebar(); // sidebar 1 ?>
</div><!--row-->
</div><!--/container-->
</div><!-- /. content -->
<?php get_footer(); ?>