Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.33 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php include (ABSPATH . '/wp-content/plugins/front-slider/front-slider.php'); ?>
  3. <div id="column">
  4.  
  5. <?php if (have_posts()) : ?>
  6. <?php while (have_posts()) : the_post(); ?>
  7.  
  8.  
  9. <div class="post" id="post-<?php the_ID(); ?>">
  10. <div class="post-top"></div>
  11. <div class="entry">
  12.  
  13. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  14.  
  15.  
  16. <div class="info">
  17.  
  18. <div class="clear"></div>
  19. </div>
  20.  
  21. <div class="content">
  22. <?php the_content('Read the rest of this entry &raquo;'); ?><div class="clear"></div>
  23. </div>
  24.  
  25.  
  26. </div>
  27. <div class="post-bottom"></div>
  28. </div>
  29.  
  30.  
  31. <?php endwhile; ?>
  32.  
  33.  
  34. <div class="navigation">
  35. <div class="navleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
  36. <div class="navright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
  37. <div class="clear"></div>
  38. </div>
  39.  
  40.  
  41. <?php else : ?>
  42.  
  43.  
  44. <div class="post">
  45. <div class="post-top"></div>
  46. <div class="entry">
  47.  
  48. <div class="content">
  49. <h1>Page Not Found</h1>
  50. <p>Sorry, but you are looking for something that isn't here.</p>
  51. <h3>Search Blog</h3>
  52. <?php include(TEMPLATEPATH."/searchform.php"); ?>
  53. </div>
  54.  
  55. </div>
  56. <div class="post-bottom"></div>
  57. </div>
  58.  
  59.  
  60. <?php endif; ?>
  61.  
  62. </div>
  63.  
  64. <?php get_sidebar(); ?>
  65. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement