forked from Mamaduka/wp-meetup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
34 lines (26 loc) · 833 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
<?php get_header(); ?>
<div id="main">
<div class="row">
<div class="eightcol">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article class="post" id="post-<?php the_ID(); ?>">
<header>
<h2><?php the_title(); ?></h2>
</header>
</div>
<div class="fourcol last"></div>
</div>
<div class="row post-content">
<div class="eightcol">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</article>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<div class="fourcol last">
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_footer(); ?>