23 lines
634 B
PHP
23 lines
634 B
PHP
<?php get_header(); ?>
|
|
<?php get_template_part('template-parts/breadcrumb'); ?>
|
|
|
|
<div class="main">
|
|
|
|
<div class="container">
|
|
<div class="main-content">
|
|
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
|
|
<?php get_template_part('template-part/content', get_post_format()); ?>
|
|
<?php endwhile; ?>
|
|
<?php else: ?>
|
|
<?php get_template_part('template-part/content', 'none'); ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
<aside class="sidebar">
|
|
<?php get_sidebar(); ?>
|
|
</aside>
|
|
</div>
|
|
|
|
</div><!-- //main -->
|
|
|
|
</div><!-- //page -->
|
|
<?php get_footer(); ?>
|