fix content page styling, add 404 page

This commit is contained in:
Jonas Heinrich 2020-04-21 17:13:15 +02:00
parent 5a85a6a83d
commit c657879840
5 changed files with 85 additions and 20 deletions

27
kit/404.php Normal file
View file

@ -0,0 +1,27 @@
<?php
get_header();
?>
<main>
<section class="background-color-white category">
<div class="content-wrap">
<h2>
Seite leider nicht gefunden
</h2>
Leider wurde die von ihnen gewünschte Seite nicht gefunden.
</div>
</section>
</main>
<?php
get_template_part('template-parts/sidebar');
get_footer();