fork download
  1. <!doctype html >
  2. <html xmlns="http://w...content-available-to-author-only...3.org/1999/xhtml" xmlns:og="http://o...content-available-to-author-only...l.org/schema/" xmlns:fb="http://w...content-available-to-author-only...k.com/2008/fbml">
  3. <head>
  4. <?php get_template_part('part', 'meta'); ?>
  5. </head>
  6. <body>
  7. <div id="wrap">
  8. <?php get_template_part('header'); ?>
  9. <div class="content">
  10. <?php get_sidebar(); ?>
  11. <div class="page">
  12. <?php if ( have_posts() ):
  13. while ( have_posts() ):
  14. the_post(); ?>
  15. <div id="post-<?php the_ID(); ?>" class="post">
  16. <h2 class="entry-title">
  17. <a href="<?php the_permalink(); ?>" rel="bookmark">
  18. <?php the_title(); ?>
  19. </a>
  20. </h2>
  21. <div class="desc-1">
  22. <?php print(get_the_date()); ?> |
  23. Posted in <?php the_category(', '); ?>
  24. </div>
  25. <div class="desc-2">
  26. <?php the_tags('Tagged in '); ?>
  27. </div>
  28. <div class="content">
  29. <?php
  30. global $more;
  31. $more = 0;
  32. the_content('a');
  33. ?>
  34. </div>
  35. <div class="post-footer">
  36. <?php get_template_part('loop', 'social'); ?>
  37. <div class="comment-intro">
  38. <a href="<?php the_permalink() ?>#comment" >
  39. <?php if ( have_comments() ) : ?>
  40. <?php
  41. comments_number('No Comments', '1 Comment', '% Comments');
  42. ?>
  43. <?php else: ?>
  44. No Comments
  45. <?php endif; ?>
  46. </a>
  47. </div>
  48. <div class="clr"></div>
  49. </div>
  50. </div>
  51. <?php endwhile; ?>
  52. <div class="pagination">
  53. <?php if ( $wp_query->max_num_pages > 1 ) : ?>
  54. <div id="nav-below" class="navigation">
  55. <div class="nav-previous nav"><?php next_posts_link( __('OLDER POST') ); ?></div>
  56. <div class="nav-next nav"><?php previous_posts_link( __('NEWER POST') ); ?></div>
  57. <div class="clr"></div>
  58. </div>
  59. <?php endif; ?>
  60. </div>
  61. <?php else: ?>
  62. <div class="post">
  63. <h2>Sorry there are no post match your criteria.</h2>
  64. </div>
  65. <?php endif; ?>
  66. <div class="clr"></div>
  67. </div>
  68. <div class="clr"></div>
  69. </div>
  70. <div class="footer">
  71. <div class="gototop"><a href="javascript:void(0)">Top of Page</a></div>
  72. <?php bloginfo('name'); ?> &copy; <?php echo date('Y'); ?>
  73. <?php wp_nav_menu( array('menu'=>'footer-nav', 'container_class'=>'footer-nav') ); ?>
  74. <div class="clr"></div>
  75. </div>
  76. </div>
  77. </body>
  78. </html>
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty