Skip to content
Snippets Groups Projects
page.php 207 B
Newer Older
ale's avatar
ale committed
<?php get_header();

if (have_posts()) : while (have_posts()) : the_post(); ?>

<div <?php post_class(); ?>>
<?php get_template_part('format', 'page');?>
</div>

<?php endwhile; endif;
get_footer();