2021-07-25 07:16:35 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The default archive page template.
|
|
|
|
*
|
|
|
|
* @author Recovery Dharma NYC
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace WP_RDNYC;
|
|
|
|
|
|
|
|
get_header(); ?>
|
2021-07-26 13:07:57 -04:00
|
|
|
<main class="container-fluid">
|
2021-07-25 07:16:35 -04:00
|
|
|
<div class="col-12 col-md-10 col-lg-9 col-xl-8 col-xxl-7 pb-2 mb-4 mt-3">
|
|
|
|
|
|
|
|
<?php if (is_archive()) : ?>
|
|
|
|
<h1 class="text-gray-300 fst-italic mb-4 tek-border-bottom-gray-dashed"><?= get_the_archive_title(); ?></h1>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
endif;
|
|
|
|
if ( have_posts() ) :
|
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
|
|
|
echo get_template_part( 'content-templates/content', 'article' );
|
|
|
|
endwhile;
|
|
|
|
?>
|
|
|
|
|
|
|
|
<nav class="d-flex justify-content-between" aria-label="Page navigation">
|
|
|
|
<div class="nav-previous alignleft"><?php next_posts_link( '← Older' ); ?></div>
|
|
|
|
<div class="nav-next alignright"><?php previous_posts_link( 'Newer →' ); ?></div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
endif;
|
|
|
|
?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<?php
|
|
|
|
get_footer('', array('frontpage'=>false));
|