textdash/archive.php
2021-08-14 18:53:24 +02:00

22 lines
No EOL
450 B
PHP

<?php get_header(); ?>
<div class="content">
<?php get_template_part('inc/page-title'); ?>
<div class="content-inner group">
<?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>
</div><!--/.content-->
<div id="move-sidebar-content"></div>
<?php get_footer(); ?>