mirror of
https://github.com/Rushilwiz/dear-anon.git
synced 2025-04-22 04:49:51 -04:00
37 lines
683 B
PHP
37 lines
683 B
PHP
<?php
|
|
/**
|
|
* Template Name: Full Width Page
|
|
*/
|
|
|
|
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($post);
|
|
|
|
ilovewp_helper_display_title($post);
|
|
ilovewp_helper_display_content($post);
|
|
ilovewp_helper_display_comments($post);
|
|
|
|
?>
|
|
|
|
</div><!-- .site-section-wrapper .site-section-wrapper-main -->
|
|
</div><!-- .site-page-content -->
|
|
|
|
<?php
|
|
endwhile;
|
|
?>
|
|
|
|
</main><!-- #site-main -->
|
|
|
|
<?php get_footer(); ?>
|