portage/single.php

34 lines
492 B
PHP
Raw Normal View History

2021-08-01 17:32:46 +00:00
<?php
/**
* The template for displaying all single posts and attachments
*
2021-08-01 17:58:45 +00:00
* @package Portage
2021-08-01 17:32:46 +00:00
*/
get_header();
?>
<div id="content">
<article>
<!-- Start the loop -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part( 'formats/content', get_post_format() ); ?>
<!-- End the loop -->
<?php endwhile; ?>
<?php endif; ?>
</article>
</div> <!-- end Content -->
<?php get_sidebar(); ?>
<div class="clear"></div>
2021-08-01 17:58:45 +00:00
<?php get_footer(); ?>