-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
48 lines (28 loc) · 934 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Standard Page Template
*
* @package MPH Starter
* @since 0.1.0
*/
get_header();
?>
<div class="row">
<section class="primary-content grid-8">
<?php while ( have_posts() ) : the_post(); ?>
<article <?php post_class( array( 'entry' ) ); ?>>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="singular-pagination pagination-container"><div class="pagination">', 'after' => '</div></div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
</div>
</article><!-- / .article -->
<?php endwhile; ?>
</section><!-- / .primary-content -->
<section class="sidebar grid-4" role="complementary">
<?php get_sidebar(); ?>
</section><!-- .secondary-content .widget-area -->
</div>
<?php get_footer(); ?>