Initial commit.

This commit is contained in:
Frank419
2024-08-20 07:44:34 +08:00
commit 942a4c151f
61 changed files with 7781 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
if ( !defined( 'WPINC' ) ) {
die;
}
?>
<?php get_header(); ?>
<?php if ( have_posts() ) : ?>
<div class="minimalistflex-archive">
<?php if ( get_theme_mod( 'minimalistflex_layout_archive_title', 'yes' ) == 'yes' ): ?>
<h1 class="archive-title panel">
<?php the_archive_title() ?>
</h1>
<?php endif; ?>
<?php get_template_part( 'templates/loop' ); ?>
</div>
<?php the_posts_pagination(); ?>
<?php endif; ?>
<?php get_footer(); ?>