An updated theme (based on Atticus Finch) for ClassicPress
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
575 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <!-- Post content -->
  2. <div class="post-content">
  3. <?php do_action( 'portage_post_top' ); ?>
  4. <?php the_content(); ?>
  5. <div class="clear"></div>
  6. <?php do_action( 'portage_post_bottom' ); ?>
  7. <div id="page-info">
  8. <p>
  9. <?php
  10. _e( 'Published on: ', 'atticus-finch' );
  11. the_date();
  12. ?>
  13. </p>
  14. <p>
  15. <?php
  16. _e( 'Lasted edited on: ', 'atticus-finch' );
  17. the_modified_date();
  18. ?>
  19. </p>
  20. </div>
  21. <?php portage_print_options() ?>
  22. </div><!-- end post content -->
  23. <?php portage_comment_display(); ?>
  24. <?php do_action( 'portage_after_post_content' ); ?>