clause agent mode "make it look like papermod"
Some checks failed
CSS Code Linting / Lint CSS (push) Has been cancelled
JS Code Linting / Lint JS (push) Has been cancelled
PHP Code Linting / Parallel lint (push) Has been cancelled
PHP Code Linting / PHPCS check (push) Has been cancelled

This commit is contained in:
gribse 2025-07-26 16:24:01 +02:00
parent 1c59bd66ea
commit 582e4491c0
91 changed files with 2139 additions and 202 deletions

31
page.php Normal file → Executable file
View file

@ -9,30 +9,33 @@
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package _s
* @package Achille_Press
*/
get_header();
?>
<main id="primary" class="site-main">
<div class="content-wrapper">
<main id="primary" class="site-main">
<?php
while ( have_posts() ) :
the_post();
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
get_template_part( 'template-parts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
endwhile; // End of the loop.
?>
</main><!-- #main -->
</main><!-- #main -->
<?php get_sidebar(); ?>
</div><!-- .content-wrapper -->
<?php
get_sidebar();
get_footer();