wasmo-theme/template-spectrum.php
2023-01-30 11:31:32 -05:00

37 lines
No EOL
704 B
PHP

<?php
/**
* Template Name: Spectrum
*
* The template for displaying the spectrum taxonomy index
*
* @subpackage wasmo
* @since 1.0.0
*/
get_header();
?>
<section id="primary" class="content-area">
<main id="main" class="site-main">
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content/content', 'page' );
endwhile; // End of the loop.
?>
<section class="entry the-questions">
<div class="entry-content">
<?php get_template_part( 'template-parts/content/content', 'tax-spectrum' ); ?>
</div>
</section>
</main><!-- #main -->
</section><!-- #primary -->
<?php
get_footer();