airl/archive.php

41 lines
926 B
PHP
Raw Permalink Normal View History

2021-01-27 11:14:13 +01:00
<?php get_header(); ?>
<div class="content">
<?php get_template_part('inc/page-title'); ?>
<?php if ( have_posts() ) : ?>
2022-09-27 13:38:38 +02:00
<?php if ( get_theme_mod('blog-layout','blog-grid') == 'blog-grid' ) : ?>
2021-01-28 16:10:35 +01:00
<div class="article-grid">
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content-grid'); ?>
<?php endwhile; ?>
</div>
2022-09-27 13:38:38 +02:00
<?php elseif ( get_theme_mod('blog-layout','blog-grid') == 'blog-list' ) : ?>
2021-01-28 16:10:35 +01:00
<div class="article-list">
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content-list'); ?>
<?php endwhile; ?>
</div>
<?php else: ?>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
<?php endif; ?>
2021-01-27 11:14:13 +01:00
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>
</div><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>