Included mareike theme

This commit is contained in:
2024-08-01 23:59:32 +02:00
parent 33287c4b40
commit 5b6b06e70d
9 changed files with 396 additions and 5 deletions

View File

@ -0,0 +1,21 @@
<?php get_header(); ?>
<main>
<div class="content">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<article <?php post_class(); ?>>
<h2><?php the_title(); ?></h2>
<div class="entry-content">
<?php the_content(); ?>
</div>
</article>
<?php endwhile; ?>
<?php else : ?>
<p>Es gibt keine Inhalte.</p>
<?php endif; ?>
</div>
</div>
</main>
<?php get_footer(); ?>