remove backup files, fixed author infos
[esmvvd.git] / blog / wp-content / themes / vvd / single.php~
diff --git a/blog/wp-content/themes/vvd/single.php~ b/blog/wp-content/themes/vvd/single.php~
deleted file mode 100755 (executable)
index c45e3cd..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-/**
- * @package WordPress
- * @subpackage Default_Theme
- */
-
-get_header();
-?>
-
-<div id="content" class="widecolumn" role="main">
-     <div id="content-left">
-         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
-
-               <div class="navigation">
-                       <div class="alignleft"><?php previous_post_link('&laquo; %link') ?></div>
-                       <div class="alignright"><?php next_post_link('%link &raquo;') ?></div>
-               </div>
-
-               <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
-                       <h2><?php the_title(); ?></h2>
-
-                       <div class="entry">
-                               <?php the_content('<p class="serif">Read the rest of this entry &raquo;</p>'); ?>
-
-                               <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
-                               <?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
-                               </div>
-                       </div>
-               </div>
-
-       <?php comments_template(); ?>
-
-       <?php endwhile; else: ?>
-
-               <p>Sorry, no posts matched your criteria.</p>
-
-<?php endif; ?>
-
-       </div>
-
-<?php get_footer(); ?>