Yuzu Theme

from meowapps.com
This commit is contained in:
2022-05-03 09:37:05 +02:00
commit 523ccac38e
75 changed files with 15482 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
<?php
/*
Template Name: Page Without Header
*/
get_header();
?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<div class="single-page">
<?php
while ( have_posts() ) :
the_post();
?>
<div class="entry-content fullwidth-container">
<?php the_content(); ?>
</div>
<?php
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
?>
<div class="comments-section">
<?php
comments_template();
?>
</div>
<?php
endif;
endwhile; // End of the loop.
?>
</div>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_footer();