portage/inc/page-main.php

37 lines
575 B
PHP
Raw Normal View History

2021-08-01 17:32:46 +00:00
<!-- Post content -->
<div class="post-content">
2021-08-01 17:46:46 +00:00
<?php do_action( 'portage_post_top' ); ?>
2021-08-01 17:32:46 +00:00
<?php the_content(); ?>
<div class="clear"></div>
2021-08-01 17:46:46 +00:00
<?php do_action( 'portage_post_bottom' ); ?>
2021-08-01 17:32:46 +00:00
<div id="page-info">
<p>
<?php
_e( 'Published on: ', 'atticus-finch' );
the_date();
?>
</p>
<p>
<?php
_e( 'Lasted edited on: ', 'atticus-finch' );
the_modified_date();
?>
</p>
</div>
2021-08-01 17:46:46 +00:00
<?php portage_print_options() ?>
2021-08-01 17:32:46 +00:00
</div><!-- end post content -->
2021-08-01 17:46:46 +00:00
<?php portage_comment_display(); ?>
2021-08-01 17:32:46 +00:00
2021-08-01 17:46:46 +00:00
<?php do_action( 'portage_after_post_content' ); ?>
2021-08-01 17:32:46 +00:00