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

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 660 bytes
Line 
1<?php get_header(); ?>
2<!--#content:start-->
3 <div id="content">
4 <?php if (have_posts()) : ?>
5 <?php while (have_posts()) : the_post(); ?>
6 <div class="entry" id="post-<?php the_ID(); ?>">
7 <h2><?php the_title(); ?></h2>
8
9 <?php
10 the_content(__(''));
11 wp_link_pages(array('before' => '<p><strong>Pagine:</strong> ', 'after' => '</p>', 'next_or_number' => 'number'));
12 edit_post_link('Edit this entry.', '<p>', '</p>');
13 ?>
14 </div>
15 <?php endwhile; ?>
16 <?php endif; ?>
17
18 </div>
19<!--#content:end-->
20<?php get_sidebar(); ?>
21<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.