-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpage.php
More file actions
executable file
·30 lines (24 loc) · 789 Bytes
/
page.php
File metadata and controls
executable file
·30 lines (24 loc) · 789 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
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package Feather
*/
get_header(); ?>
<div class="wrap container" role="document">
<div class="content row">
<aside class="sidebar col-sm-3" role="complementary">
<?php get_sidebar( 'page' ); ?>
</aside><!--/ .sidebar -->
<main class="main col-sm-9" role="main">
<?php get_template_part( 'template-parts/page', 'header' ); ?>
<?php get_template_part( 'template-parts/content', 'page' ); ?>
</main><!--/ .main -->
</div><!--/ .content .row -->
</div><!--/ .wrap .container -->
<?php get_footer(); ?>