add category page, fix single page view

This commit is contained in:
Jonas Heinrich 2020-04-20 20:13:26 +02:00
parent 71435d6890
commit 5a85a6a83d
6 changed files with 118 additions and 935 deletions

18
kit/single.php Normal file
View file

@ -0,0 +1,18 @@
<?php
get_header();
?>
<main>
<?php
the_post();
get_template_part( 'template-parts/content', 'page' );
?>
</main>
<?php
get_template_part('template-parts/sidebar');
get_footer();