-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
30 lines (30 loc) · 1.24 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
<?php get_header(); ?>
<div class="header-image">
<?php get_template_part( 'parts/content', 'header-image' ); ?>
</div>
<div id="content" class="site-content">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<div class="container">
<div class="page-item">
<?php
while( have_posts() ) : the_post();
?>
<article>
<header>
<h1><?php the_title(); ?></h1>
</header>
<?php the_content(); ?>
<?php wp_link_pages(); ?>
</article>
<?php
if( comments_open() || get_comments_number() ){
comments_template();
}
endwhile; ?><!-- #Enable comments in the posts -->
</div>
</div>
</main>
</div>
</div>
<?php get_footer(); ?>