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

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 754 bytes
Line 
1<?php
2/**
3 * @package WordPress
4 * @subpackage Default_Theme
5 */
6
7get_header(); ?>
8
9 <div id="content" class="narrowcolumn" role="main">
10
11 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
12 <div class="post" id="post-<?php the_ID(); ?>">
13 <h2><?php the_title(); ?></h2>
14 <div class="entry">
15 <?php the_content('<p class="serif">' . __('Read the rest of this page &raquo;', 'kubrick') . '</p>'); ?>
16
17 <?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'kubrick') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
18
19 </div>
20 </div>
21 <?php endwhile; endif; ?>
22 <?php edit_post_link(__('Edit this entry.', 'kubrick'), '<p>', '</p>'); ?>
23 </div>
24
25<?php get_sidebar(); ?>
26
27<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.