equal
deleted
inserted
replaced
|
1 <?php get_header(); ?> |
|
2 <?php get_sidebar(1); ?> |
|
3 <?php get_sidebar(2); ?> |
|
4 |
|
5 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> |
|
6 <div id="post-<?php the_ID(); ?>"> |
|
7 <div class="bg-top"><div class="bg-bot"><div class="bg-left"><div class="bg-right"> |
|
8 <div class="corner-left-top"><div class="corner-right-top"><div class="corner-left-bot"><div class="corner-right-bot"> |
|
9 <div class="indent border-bottom" style=" background: none;"> |
|
10 |
|
11 <div class="title-page"> |
|
12 <h2><?php the_title(); ?></h2> |
|
13 </div> |
|
14 |
|
15 <div class="text-box"> |
|
16 <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> |
|
17 </div> |
|
18 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> |
|
19 <div class="link-edit"><?php edit_post_link('Edit', ''); ?></div><br /> |
|
20 </div> |
|
21 </div></div></div></div> |
|
22 </div></div></div></div> |
|
23 </div> |
|
24 <?php endwhile; endif; ?> |
|
25 |
|
26 |
|
27 <?php get_footer(); ?> |