PageRenderTime 41ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 15 lines | 15 code | 0 blank | 0 comment | 4 complexity | 11364552706ec0decddad2a75b6577ae 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','&lsaquo;') ?></div>
  5. <?php the_image(); ?>
  6. <div class="nav next"><?php previous_post_link('%link','&rsaquo;'); ?></div>
  7. </div>
  8. <?php partial('post'); ?>
  9. <?php comments_template(); ?>
  10. <?php endwhile; else : ?>
  11. <h2 class="center">Not Found</h2>
  12. <p class="center">Sorry, but you are looking for something that isn't here.</p>
  13. <?php include (TEMPLATEPATH . "/searchform.php"); ?>
  14. <?php endif; ?>
  15. <?php get_footer(); ?>