personalias/archive.php
2022-04-08 19:46:25 +02:00

54 lines
No EOL
1.2 KiB
PHP

<?php get_header(); ?>
<div class="content">
<div class="split">
<div class="split-left">
<div class="stickyfill">
<?php get_template_part('inc/highlights'); ?>
</div>
</div>
<div class="split-right">
<?php get_template_part('inc/page-title'); ?>
<div class="split-right-inner">
<?php if ( get_theme_mod('blog-layout','blog-grid') == 'blog-grid' ) : ?>
<div class="article-grid">
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content-grid'); ?>
<?php endwhile; ?>
</div>
<?php elseif ( get_theme_mod('blog-layout','blog-grid') == 'blog-list' ) : ?>
<div class="article-list">
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content-list'); ?>
<?php endwhile; ?>
</div>
<?php else: ?>
<div class="article-standard">
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
</div>
<?php endif; ?>
<?php get_template_part('inc/pagination'); ?>
</div>
</div>
</div>
</div><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>