bigvisual/archive.php

23 lines
423 B
PHP
Raw Normal View History

2021-09-29 12:47:20 +02:00
<?php get_header(); ?>
<div class="content">
<?php get_template_part('inc/page-title'); ?>
<?php if ( have_posts() ) : ?>
2021-10-01 12:57:17 +02:00
<div class="article-grid">
2021-09-29 12:47:20 +02:00
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
2021-10-01 12:57:17 +02:00
</div>
2021-09-29 12:47:20 +02:00
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>
</div><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>