source: trunk/www.guidonia.net/wp/wp-content/themes/blueleanmagazine/single.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 700 bytes
Line 
1<?php get_header(); ?>
2
3 <!-- BEGIN content -->
4 <div id="content"><div class="head"><div class="foot">
5
6 <?php
7 if (have_posts()) : the_post();
8 ?>
9
10 <!-- begin post -->
11 <div class="single">
12 <h2><?php the_title(); ?></h2>
13 <?php the_content(); ?>
14 </div>
15 <!-- end post -->
16
17 <div id="comments"><?php comments_template(); ?></div>
18
19 <?php else : ?>
20
21 <div class="notfound">
22 <h2>Not Found</h2>
23 <p>Sorry, but you are looking for something that is not here.</p>
24 </div>
25 <?php endif; ?>
26
27 <div class="break"></div>
28
29 <?php include("bottom.php"); ?>
30
31 <div class="break"></div>
32
33 </div></div></div>
34 <!-- END content -->
35
36<?php get_sidebar(); get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.