Current File : /home/pacjaorg/wpt.pacja.org/copwordpres/wp-content/themes/forest-nature/archive.php |
<?php
/**
* The template for displaying archive pages
*
* @subpackage Forest Nature
* @since 1.0
*/
get_header(); ?>
<main id="content" class="mt-5">
<div class="container">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<?php
the_archive_title( '<h1 class="page-title"><span>', '</span></h1>' );
the_archive_description( '<div class="taxonomy-description">', '</div>' );
?>
</header>
<?php endif; ?>
<div class="content-area">
<div id="main" class="site-main" role="main">
<div class="row m-0">
<?php
get_template_part( 'template-parts/post/post-layout' );
?>
</div>
</div>
</div>
</div>
</main>
<?php get_footer();