21 lines
406 B
PHP
21 lines
406 B
PHP
<?php get_header(); ?>
|
|
|
|
<main id="content" class="site-content entry-content flex-grow">
|
|
<?php if (have_posts()) : ?>
|
|
<?php
|
|
while (have_posts()) :
|
|
the_post();
|
|
the_content();
|
|
if (is_a_collections_page()) {
|
|
get_template_part('template-parts/components/collective-acess-button');
|
|
}
|
|
?>
|
|
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|
|
</main>
|