Initial commit

This commit is contained in:
Alexander Agnarson 2025-03-27 14:38:21 +01:00
commit fe0be23838
478 changed files with 71610 additions and 0 deletions

23
archive.php Normal file
View file

@ -0,0 +1,23 @@
<?php get_header(); ?>
<div class="page-col-center">
<?php get_template_part('inc/page-title'); ?>
<?php if ( have_posts() ) : ?>
<div class="page-grid-center">
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
</div>
<?php endif; ?>
<?php get_template_part('inc/pagination'); ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>