-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
47 lines (41 loc) · 1.03 KB
/
page.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
<?php
/**
* The template for displaying all pages.
*
* @package YIKES Starter
*/
get_header(); ?>
<div class="archive-subheader">
<div class="jumbotron">
<div class="container">
<section class="archive-header">
<h1 class="entry-title">
<?php the_title(); ?></h1>
</h1>
</section><!-- .archive-header -->
</div><!-- .container -->
</div><!-- /.jumbotron -->
</div>
<div id="main" tabindex="-1" class="site-main" role="main">
<div class="container">
<div class="row">
<div class="col-sm-9">
<div id="primary" class="content-area">
<div id="content" class="site-content clearfix">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content/page' );
endwhile;
?>
</div><!-- #content -->
</div><!-- #primary -->
</div><!-- .col-sm-9 -->
<div class="col-sm-3 site-sidebar site-loop">
<?php get_sidebar(); ?>
</div><!-- .col-sm-3 -->
</div><!-- .row -->
</div><!-- .container -->
</div><!-- #main -->
<?php
get_footer();