barebones/templates/template-demo.php

32 lines
523 B
PHP
Raw Normal View History

2015-10-15 18:24:32 +02:00
<?php
/**
* Template Name: Demo page template
*/
get_header();
2015-10-15 18:24:32 +02:00
?>
<main class="main" role="main">
<div class="container">
<?php while (have_posts()) : the_post(); ?>
2015-10-15 18:24:32 +02:00
<article <?php post_class(); ?>>
<header role="heading">
2015-10-20 14:21:57 +02:00
<h3 class="post__title"><?php the_title(); ?></h3>
2015-10-15 18:24:32 +02:00
</header>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
</div>
</main>
<?php get_footer(); ?>