c45e3cd6facc139520b346ab2a0d569513f85179
[esmvvd.git] / blog / wp-content / themes / vvd / single.php~
1 <?php
2 /**
3  * @package WordPress
4  * @subpackage Default_Theme
5  */
6
7 get_header();
8 ?>
9
10 <div id="content" class="widecolumn" role="main">
11      <div id="content-left">
12           <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
13
14                 <div class="navigation">
15                         <div class="alignleft"><?php previous_post_link('&laquo; %link') ?></div>
16                         <div class="alignright"><?php next_post_link('%link &raquo;') ?></div>
17                 </div>
18
19                 <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
20                         <h2><?php the_title(); ?></h2>
21
22                         <div class="entry">
23                                 <?php the_content('<p class="serif">Read the rest of this entry &raquo;</p>'); ?>
24
25                                 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
26                                 <?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
27                                 </div>
28                         </div>
29                 </div>
30
31         <?php comments_template(); ?>
32
33         <?php endwhile; else: ?>
34
35                 <p>Sorry, no posts matched your criteria.</p>
36
37 <?php endif; ?>
38
39         </div>
40
41 <?php get_footer(); ?>