-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
30 lines (30 loc) · 873 Bytes
/
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
<?php
/**
* The template for displaying all static pages.
*
* This is the template that displays all pages by default. Note that this is
* the WordPress construct of static pages and that other views on a
* WordPress site will use a different template. Also note that a page can be
* assigned a named template, in which case this template is not used.
*
* @package infectionNet
* @since infectionNet 0.1
*/
get_header();
?>
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php inet_breadcrumb(); ?>
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'partials/content', 'page' );
comments_template( '', true );
endwhile;
?>
</div><!-- #content .site-content -->
</div><!-- #primary .content-area -->
<?php
//get_sidebar();
get_footer();
?>