blogrow/archive.php

49 lines
1.1 KiB
PHP
Raw Normal View History

2015-12-11 17:09:48 +01:00
<?php get_header(); ?>
2017-03-05 21:42:46 +01:00
<div class="content">
2015-12-11 17:09:48 +01:00
<div class="pad group">
<?php get_template_part('inc/page-title'); ?>
<?php if ((category_description() != '') && !is_paged()) : ?>
<div class="notebox">
<?php echo category_description(); ?>
</div>
<?php endif; ?>
<?php if ( have_posts() ) : ?>
<?php if ( ot_get_option('blog-layout') == 'blog-grid' ) : ?>
<ul class="entry-grid group">
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content-grid'); ?>
<?php endwhile; ?>
</ul>
<?php elseif ( ot_get_option('blog-layout') == 'blog-list' ) : ?>
<div class="entry-list group">
<?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; ?>
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>
</div><!--/.pad-->
2017-03-05 21:42:46 +01:00
</div><!--/.content-->
2015-12-11 17:09:48 +01:00
<?php get_sidebar(); ?>
<?php get_footer(); ?>