initial
[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 <?php get_sidebar(); ?>
11
12 <div id="content" class="widecolumn" role="main">
13      <div id="content-left">
14           <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
15
16                 <div class="navigation">
17                         <div class="alignleft"><?php previous_post_link('&laquo; %link') ?></div>
18                         <div class="alignright"><?php next_post_link('%link &raquo;') ?></div>
19                 </div>
20
21                 <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
22                         <h2><?php the_title(); ?></h2>
23
24                         <div class="entry">
25                                 <?php the_content('<p class="serif">Read the rest of this entry &raquo;</p>'); ?>
26
27                                 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
28                                 <?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
29         <?php comments_template(); ?>
30                                 </div>
31                         </div>
32                 </div>
33
34
35
36         <?php endwhile; else: ?>
37
38                 <p>Sorry, no posts matched your criteria.</p>
39
40 <?php endif; ?>
41
42         </div>
43
44 <?php get_footer(); ?>