Wordpress-Blog/themes/AlmaMater/single.php
Eugene van Aubel 8cefe8bc25 Added les 2
2024-10-01 19:38:17 +02:00

26 lines
521 B
PHP

<?php
the_post();
get_header();
?>
<header class="hero is-primary">
<div class="hero-body">
<h1 class="title has-text-dark"><?php the_title(); ?></h1>
</div>
</header>
<main class="section">
<div class="container">
<article class="content">
<p><?php the_content(); ?></p>
</article>
<div class="buttons">
<a href="<?php echo esc_url(home_url('/')); ?>" class="button is-link">Back to Blog</a>
</div>
</div>
</main>
<?php
get_footer();
?>