-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
executable file
·30 lines (26 loc) · 1.2 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(); ?>
<?php get_sidebar(1); ?>
<div class="column-center">
<div class="corner-left-top"><div class="corner-right-top"><div class="corner-left-bot"><div class="corner-right-bot">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>">
<div class="indent border-bottom">
<div class="title">
<div class="border-top"><div class="border-bot"><div class="border-left"><div class="border-right">
<div class="corner-left-top"><div class="corner-right-top"><div class="corner-left-bot"><div class="corner-right-bot">
<h2><?php the_title(); ?></h2>
</div></div></div></div>
</div></div></div></div>
</div>
<div class="text-box">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
</div>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<div class="link-edit"><?php edit_post_link('Edit', ''); ?></div>
<br /><br />
</div>
</div>
<?php endwhile; endif; ?>
</div></div></div></div>
</div>
<?php get_footer(); ?>