blogcards/index.php
Alexander Agnarson 74bf86a6f2 Initial commit
2024-04-14 21:21:20 +02:00

13 lines
No EOL
251 B
PHP

<?php get_header(); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php get_template_part('inc/pagination'); ?>
<?php get_footer(); ?>