Initial commit

This commit is contained in:
Alexander Agnarson 2024-04-14 21:21:20 +02:00
commit 74bf86a6f2
471 changed files with 70681 additions and 0 deletions

13
index.php Normal file
View file

@ -0,0 +1,13 @@
<?php get_header(); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php get_template_part('inc/pagination'); ?>
<?php get_footer(); ?>