This commit is contained in:
GP_DEV
2025-06-01 12:33:52 +03:00
commit 3ab7ac5a79
108 changed files with 12507 additions and 0 deletions

20
index.php Normal file
View File

@@ -0,0 +1,20 @@
<?php get_header(); ?>
<div>
<?php if ( have_posts() ) : ?>
<?php
while ( have_posts() ) :
the_post();
?>
<?php get_template_part( 'template-parts/content', get_post_format() ); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php
get_footer();