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

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 1.0 KB
Line 
1<?php /* Fusion/digitalnature */ ?>
2<?php get_header(); ?>
3
4<!-- mid content -->
5<div id="mid-content">
6 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
7 <?php if (function_exists("post_class")) { ?>
8 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
9 <?php } else { ?>
10 <div class="post" id="post-<?php the_ID(); ?>">
11 <?php } ?>
12 <?php if (!get_post_meta($post->ID, 'hide_title', true)): ?><h2 class="left"><?php the_title(); ?></h2><?php endif; ?>
13 <p class="right"><span class="editlink page"><?php edit_post_link(''); ?></span></p>
14 <div class="clear"></div>
15 <div class="entry clearfix">
16 <?php the_content(__('Read the rest of this page &raquo;', 'fusion')); ?>
17 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
18 </div>
19 </div>
20 <?php endwhile; endif; ?>
21 <?php comments_template(); ?>
22</div>
23<!-- mid content -->
24</div>
25<!-- /mid -->
26
27<?php get_sidebar(); ?>
28
29<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.