mirror of
https://github.com/Rushilwiz/dear-anon.git
synced 2025-04-21 12:30:19 -04:00
44 lines
990 B
PHP
44 lines
990 B
PHP
<?php
|
|
get_header();
|
|
?>
|
|
|
|
<main id="site-main">
|
|
|
|
<?php
|
|
while (have_posts()) : the_post();
|
|
?>
|
|
|
|
<div class="site-page-content">
|
|
<div class="site-section-wrapper site-section-wrapper-main clearfix">
|
|
|
|
<?php
|
|
// Function to display Breadcrumbs
|
|
ilovewp_helper_display_breadcrumbs();
|
|
|
|
// Function to display the START of the content column markup
|
|
ilovewp_helper_display_page_content_wrapper_start();
|
|
|
|
ilovewp_helper_display_title($post);
|
|
ilovewp_helper_display_content($post);
|
|
ilovewp_helper_display_comments($post);
|
|
|
|
// Function to display the END of the content column markup
|
|
ilovewp_helper_display_page_content_wrapper_end();
|
|
|
|
// Function to display the SIDEBAR (if not hidden)
|
|
ilovewp_helper_display_page_sidebar_column();
|
|
|
|
?>
|
|
|
|
</div><!-- .site-section-wrapper .site-section-wrapper-main -->
|
|
</div><!-- .site-page-content -->
|
|
|
|
<?php
|
|
endwhile;
|
|
?>
|
|
|
|
</main><!-- #site-main -->
|
|
|
|
<?php
|
|
get_footer();
|
|
?>
|