Initial commit

This commit is contained in:
Alexander Agnarson 2021-01-27 11:14:13 +01:00
commit f80106a5b7
357 changed files with 84269 additions and 0 deletions

21
archive.php Normal file
View file

@ -0,0 +1,21 @@
<?php get_header(); ?>
<div class="content">
<?php get_template_part('inc/page-title'); ?>
<?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><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>