quick single for previewing game

This commit is contained in:
Antoine M 2024-02-13 19:15:07 +01:00
parent 146b283115
commit 9095d26538

View File

@ -0,0 +1,20 @@
<?php get_header("minimal"); ?>
<div class="container mx-auto">
<?php if (have_posts()) : ?>
<?php
while (have_posts()) :
the_post();
?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php
get_footer();