equal
deleted
inserted
replaced
|
1 <?php get_header(); ?> |
|
2 |
|
3 <?php get_sidebar(); ?> |
|
4 |
|
5 <div id="main"> |
|
6 |
|
7 <div id="left"> |
|
8 |
|
9 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> |
|
10 |
|
11 <div class="post"> |
|
12 |
|
13 |
|
14 |
|
15 <h1><?php the_title(); ?></h1> |
|
16 |
|
17 |
|
18 |
|
19 <?php the_content(); ?> |
|
20 |
|
21 |
|
22 |
|
23 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> |
|
24 |
|
25 |
|
26 |
|
27 <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> |
|
28 |
|
29 |
|
30 |
|
31 </div> |
|
32 |
|
33 <?php endwhile; ?> |
|
34 |
|
35 |
|
36 |
|
37 <?php else : ?> |
|
38 |
|
39 |
|
40 |
|
41 <?php endif; ?> |
|
42 |
|
43 |
|
44 |
|
45 </div> |
|
46 |
|
47 <div class="clearer"> </div> |
|
48 |
|
49 </div> |
|
50 |
|
51 |
|
52 |
|
53 <?php get_footer(); ?> |