source: trunk/www.guidonia.net/wp/wp-content/themes/duplexes/page.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 768 bytes
Line 
1<?php get_header(); ?>
2
3<div id="topcurve"></div>
4<div id="main">
5<div id="content">
6
7<?php if (have_posts()) : ?>
8<?php while (have_posts()) : the_post(); ?>
9
10<div class="post">
11<h2 class="postTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
12<div class="postContent"><?php the_content('(continue reading...)'); ?></div>
13<div class="cleared"></div>
14</div> <!-- Closes Post -->
15
16<?php endwhile; ?>
17<?php else : ?>
18<div class="post">
19<h2 class="postTitle">Not Found</h2>
20<div class="postContent"><p>Sorry, but you are looking for something that isn't here.</p></div>
21</div> <!-- Closes Post -->
22<?php endif; ?>
23</div> <!-- Closes Content -->
24
25<?php get_sidebar(); ?>
26<div class="cleared"></div>
27</div> <!-- Closes Main -->
28
29<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.