Added WP-Theme

This commit is contained in:
2026-04-23 08:21:57 +02:00
parent fb1685bdd7
commit ffd95cb825
37 changed files with 2415 additions and 145 deletions

View File

@@ -0,0 +1,33 @@
<?php
/**
* Page template.
*
* @package AS_Coaching
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header();
?>
<main id="content" class="site-main">
<div class="entry-shell">
<div class="container">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'entry-shell__article' ); ?>>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<div class="entry-content">
<?php the_content(); ?>
</div>
</article>
<?php endwhile; ?>
</div>
</div>
</main>
<?php
get_footer();