Files
2026-04-23 08:21:57 +02:00

34 lines
615 B
PHP

<?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();