2024-02-18 15:05:34 -05:00
|
|
|
<?php
|
|
|
|
// MFWPT - index.php
|
|
|
|
// This is the index page, which presents the river,
|
|
|
|
// and is the default for any of the other views that
|
|
|
|
// do not have specific php views
|
|
|
|
?>
|
|
|
|
|
2024-02-18 11:35:39 -05:00
|
|
|
<?php get_header(); ?>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
|
2024-02-18 15:05:34 -05:00
|
|
|
<?php
|
|
|
|
if ( have_posts() ) : while ( have_posts() ) : the_post();
|
|
|
|
// get the content.php
|
2024-02-18 11:35:39 -05:00
|
|
|
get_template_part( 'content', get_post_format() );
|
|
|
|
endwhile;
|
2024-02-18 15:05:34 -05:00
|
|
|
else :
|
|
|
|
_e( 'Sorry, no posts matched your criteria.', 'textdomain' );
|
|
|
|
endif;
|
|
|
|
// pagenation for the pages
|
|
|
|
the_posts_pagination( array(
|
|
|
|
'mid_size' => 2,
|
|
|
|
'prev_text' => "<-- ",
|
|
|
|
'next_text' => " -->"
|
|
|
|
) );
|
|
|
|
//get_sidebar();
|
|
|
|
?>
|
2024-02-18 11:35:39 -05:00
|
|
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|