Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2011
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4. <div id="content-inside">
  5. <div id="posts">
  6. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  7.  
  8. <div id="post-<?php the_ID(); ?>" <?php post_class('post-item single-post-item') ?>>
  9. <div class="post-details">
  10. <div class="post-thumbnail">
  11. <a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('featured'); ?></a>
  12. </div>
  13.  
  14. <h2><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  15.  
  16.  
  17. <div class="posted-in">
  18. <?php the_category('') ?>
  19. </div>
  20.  
  21. </div>
  22.  
  23. <div class="post-content">
  24.  
  25. <?php the_content(''); ?>
  26.  
  27.  
  28. </div> <!-- post-content -->
  29.  
  30. </div> <!-- post-item -->
  31.  
  32. <?php endwhile; else : ?>
  33.  
  34. <div id="nothing-here" class="post-item single-post-item">
  35. <h2>Whoops!!! Nothing Here by That Name</h2>
  36.  
  37. <div class="post-content-1">
  38. <p>Very sorry, but what you are looking for isn't here. Maybe you should try one of the links below.</p>
  39.  
  40. <h4 class="not-here">Find Posts by Title:</h4>
  41. <ul>
  42. <?php query_posts('&showposts=1000&orderby=title&order=asc'); if (have_posts()) : while (have_posts()) : the_post(); ?>
  43. <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
  44. <?php endwhile; endif; ?>
  45. </ul>
  46.  
  47. <h4 class="not-here">Find Posts by Month:</h4>
  48. <ul>
  49. <?php wp_get_archives('type=monthly'); ?>
  50. </ul>
  51.  
  52. <h4 class="not-here">Find Posts by Category:</h4>
  53. <ul>
  54. <?php wp_list_categories('title_li='); ?>
  55. </ul>
  56.  
  57. <h4 class="not-here">Maybe a Page:</h4>
  58. <ul>
  59. <?php wp_list_pages('title_li='); ?>
  60. </ul>
  61. /div> <!-- post-content -->
  62. </div> <!-- post-item -->
  63.  
  64. <?php endif; ?>
  65.  
  66. <?php comments_template(); ?>
  67. </div> <!-- posts -->
  68.  
  69. <?php get_sidebar(); ?>
  70. </div> <!-- content-inside -->
  71. </div> <!-- content -->
  72.  
  73. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement