MinimalistFlex/index.php
2024-08-20 07:44:34 +08:00

17 lines
287 B
PHP

<?php
if ( !defined( 'WPINC' ) ) {
die;
}
?>
<?php get_header(); ?>
<?php if ( have_posts() ) : ?>
<div class="minimalistflex-home">
<?php get_template_part( 'templates/loop' ); ?>
</div>
<?php the_posts_pagination(); ?>
<?php endif; ?>
<?php get_footer(); ?>