barebones/page.php

24 lines
460 B
PHP
Raw Permalink Normal View History

2015-12-08 00:02:12 +01:00
<?php get_header(); ?>
2015-10-20 14:21:57 +02:00
<main class="main" role="main">
<div class="container">
2019-01-08 11:52:31 +01:00
<?php while ( have_posts() ) : the_post(); ?>
2015-10-20 14:21:57 +02:00
<article <?php post_class(); ?>>
<header role="heading">
2019-01-08 11:52:31 +01:00
<h1 class="post__title"><?php the_title(); ?></h1>
2015-10-20 14:21:57 +02:00
</header>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
</div>
</main>
2015-12-08 00:02:12 +01:00
<?php get_footer(); ?>