Initial AI theme draft

This commit is contained in:
2026-07-26 16:56:32 +02:00
parent 56579bf158
commit 5542e72f98
16 changed files with 245 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
<?php get_header(); ?>
<header class="page-header"><h1 class="page-title"><?php the_archive_title(); ?></h1><?php the_archive_description( '<div class="archive-description">', '</div>' ); ?></header>
<main id="main" class="site-main"><?php if ( have_posts() ) { while ( have_posts() ) { the_post(); get_template_part( 'template-parts/content' ); } the_posts_pagination( array( 'mid_size' => 1 ) ); } ?></main>
<?php get_footer();