Guest User

Untitled

a guest
Jul 17th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <?php $theme->display( 'header'); ?>
  2. <?php $theme->display( 'sidebar'); ?>
  3.  
  4.  
  5. <!-- home -->
  6. <div id="content">
  7.  
  8.  
  9. <!--begin primary content-->
  10. <!--begin loop-->
  11.  
  12. <?php foreach ( $posts as $post ) { ?>
  13.  
  14. <!--display title, date, and author-->
  15. <h1><a href="<?php echo $post->permalink; ?>" title="<?php echo $post->title; ?>"><?php echo $post->title_out; ?></a></h1>
  16. <h2><?php _e('Posted on '); ?> <?php echo $post->pubdate->text_format('<span>{M}</span> <span>{d}</span>, <span>{Y}</span>'); ?> in
  17. <?php if ( count( $post->tags ) > 0 ) { ?><?php echo $post->tags_out; ?></h2>
  18. <!--display title, date, and author-->
  19.  
  20.  
  21. <!--display content-->
  22. <?php echo $post->content_out; ?>
  23.  
  24.  
  25. <!--display tags and comments-->
  26.  
  27. <div class="meta">
  28. <?php } ?><a href="<?php echo $post->permalink; ?>" title="<?php _e('Comments on this post'); ?>"><?php echo $post->comments-
  29.  
  30. >approved->count; ?> <?php echo _n( 'Comment', 'Comments', $post->comments->approved->count ); ?></a></div>
  31.  
  32. <?php } ?>
  33. <!--end loop-->
  34.  
  35. <!--pagination-->
  36. <center>
  37. <?php $theme->page_selector( null, array( 'leftSide' => 2, 'rightSide' => 2 ) ); ?>
  38. <br><br>
  39. </center>
  40.  
  41. <!--end primary content-->
  42. <!-- /home -->
  43.  
  44.  
  45. <?php $theme->display ('footer'); ?>
Add Comment
Please, Sign In to add comment