barebones/templates/template-demo.php
Lukas Juhas 6b6864f7a0 2.0.1
Comment out example "add_image_size" as it can be easily forgotten
which leaves you with extra unused image size, Add CHANGELOG.MD to
track changes, Tidy up formatting using PHP-CS-Fixer (mostly spacing),
Update README.MD dependencies
2016-08-09 13:22:26 +01:00

31 lines
523 B
PHP

<?php
/**
* Template Name: Demo page template
*/
get_header();
?>
<main class="main" role="main">
<div class="container">
<?php while (have_posts()) : the_post(); ?>
<article <?php post_class(); ?>>
<header role="heading">
<h3 class="post__title"><?php the_title(); ?></h3>
</header>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
</div>
</main>
<?php get_footer(); ?>