mirror of
https://github.com/Rushilwiz/dear-anon.git
synced 2025-04-20 04:00:15 -04:00
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
|
|
if ( 'posts' == get_option( 'show_on_front' ) ) {
|
|
|
|
get_template_part( 'index' );
|
|
|
|
} else {
|
|
|
|
get_header();
|
|
?>
|
|
|
|
<main id="site-main">
|
|
|
|
<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();
|
|
|
|
the_archive_title( '<h1 class="page-title archives-title">', '</h1>' );
|
|
the_archive_description( '<div class="archives-content clearfix">', '</div>' );
|
|
|
|
echo '<hr />';
|
|
get_template_part('loop');
|
|
|
|
// 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 -->
|
|
|
|
</main><!-- #site-main -->
|
|
|
|
<?php get_footer();
|
|
}
|
|
?>
|