PageRenderTime 50ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/blog/wp-content/themes/monotone/single.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 15 lines | 14 code | 1 blank | 0 comment | 4 complexity | f4ae8cf7340f061170b0c611426225d4 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, AGPL-1.0, LGPL-2.1
  1. <?php get_header(); ?>
  2. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  3. <div class="image">
  4. <div class="nav prev"><?php next_post_link('%link') ?></div>
  5. <?php the_image(); ?>
  6. <div class="nav next"><?php previous_post_link('%link') ?></div>
  7. </div>
  8. <?php partial('post'); ?>
  9. <?php endwhile; else : ?>
  10. <h2 class="center">Not Found</h2>
  11. <p class="center">Sorry, but you are looking for something that isn't here.</p>
  12. <?php include (TEMPLATEPATH . "/searchform.php"); ?>
  13. <?php endif; ?>
  14. <?php get_footer(); ?>