File: D:/HostingSpaces/SoulSports/donutbootdenbosch.nl/wwwroot/wp-content/themes/darkorange/archive.php
<?php
/*
* The template for displaying archive pages.
*/
?>
<?php get_header(); ?>
<div id="content">
<?php if ( have_posts() ) : ?>
<?php
the_archive_title( '<h1 class="page-title">', '</h1>' );
the_archive_description( '<div class="archive-description">', '</div>' );
?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content-list' ); ?>
<?php endwhile; ?>
<div class="post-nav">
<?php next_posts_link(); ?>
<?php previous_posts_link(); ?>
</div>
<?php else: ?>
<?php get_template_part( 'content-none' ); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>