slanted/archive.php
2018-09-08 16:19:08 +02:00

25 lines
No EOL
510 B
PHP

<?php get_header(); ?>
<div class="content">
<div class="pad group">
<?php if ( ! is_paged() ) : ?>
<?php the_archive_description( '<div class="notebox">', '</div>' ); ?>
<?php endif; ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>
</div><!--/.pad-->
</div><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>