|
1 <?php get_header(); ?> |
|
2 <?php get_sidebar(1); ?> |
|
3 <?php get_sidebar(2); ?> |
|
4 |
|
5 |
|
6 <?php if (have_posts()) : ?> |
|
7 <?php while (have_posts()) : the_post(); ?> |
|
8 <div <?php post_class() ?> id="post-<?php the_ID(); ?>" style=" float:none; "> |
|
9 |
|
10 <div class="bg-top"><div class="bg-bot"><div class="bg-left"><div class="bg-right"> |
|
11 <div class="corner-left-top"><div class="corner-right-top"><div class="corner-left-bot"><div class="corner-right-bot"> |
|
12 <div class="indent"> |
|
13 |
|
14 <div class="title"> |
|
15 <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> |
|
16 |
|
17 <div class="author"> |
|
18 posted by <?php the_author_link() ?> |
|
19 </div> |
|
20 |
|
21 <div class="date"> |
|
22 <?php the_time('l, F j, Y') ?> |
|
23 </div> |
|
24 |
|
25 </div> |
|
26 |
|
27 <div class="text-box"> |
|
28 <?php the_content('<div class="more-link"><a href="#">Continue Reading</a></div>'); ?> |
|
29 </div> |
|
30 <div class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?></div> |
|
31 <div class="comments"> |
|
32 <?php comments_popup_link('0', '1', '%'); ?> |
|
33 </div> |
|
34 <div class="link-edit"><?php edit_post_link('Edit', ''); ?></div> |
|
35 </div> |
|
36 </div></div></div></div> |
|
37 </div></div></div></div> |
|
38 |
|
39 </div> |
|
40 <?php endwhile; ?> |
|
41 |
|
42 <div class="navigation"> |
|
43 <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> |
|
44 <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> |
|
45 </div> |
|
46 |
|
47 <?php else : ?> |
|
48 <h2 class="pagetitle">Not Found</h2> |
|
49 <p class="center">Sorry, but you are looking for something that isn't here.</p> |
|
50 <?php get_search_form(); ?> |
|
51 <?php endif; ?> |
|
52 |
|
53 </div> |
|
54 |
|
55 <?php get_footer(); ?> |