Advertisement
Guest User

Untitled

a guest
May 27th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php get_sidebar(); ?>
  4.  
  5.  
  6.  
  7. <div id="content">
  8.  
  9. <?php if (have_posts()) : ?>
  10.  
  11.  
  12.  
  13. <?php while (have_posts()) : the_post(); ?>
  14.  
  15.  
  16.  
  17. <div class="post">
  18.  
  19. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  20.  
  21. <div class="contenttext">
  22.  
  23. <?php the_content('Read more &raquo;'); ?>
  24.  
  25. </div>
  26.  
  27.  
  28.  
  29. <p class="postinfo"><strong>Posted:</strong> <?php the_time('F jS, Y') ?> under <?php the_category(', ') ?>.<br />
  30.  
  31. <?php the_tags('Tags: ', ', ', '<br />'); ?>
  32.  
  33. <a href="<?php comments_link(); ?>"><strong>Comments:</strong> <?php comments_number('none','1','%'); ?></a>
  34.  
  35. <?php edit_post_link('[e]',' | ',''); ?></p>
  36.  
  37. </div>
  38.  
  39.  
  40.  
  41. <?php endwhile; ?>
  42.  
  43.  
  44.  
  45. <div class="navigation">
  46.  
  47. <p><span class="prevlink"><?php next_posts_link('&laquo; Previous entries') ?></span>
  48.  
  49. <span class="nextlink"><?php previous_posts_link('Next entries &raquo;') ?></span></p>
  50.  
  51. </div>
  52.  
  53.  
  54.  
  55. <?php else : ?>
  56.  
  57. <h2>Not found!</h2>
  58.  
  59. <p>Could not find the requested page. Use the navigation menu to find your target, or use the search box below:</p>
  60.  
  61. <?php include (TEMPLATEPATH . "/searchform.php"); ?>
  62.  
  63. <?php endif; ?>
  64.  
  65.  
  66.  
  67. </div>
  68.  
  69. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement