24 lines
729 B
PHP
24 lines
729 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();
|
|
thanhgiang_set_post_views(get_the_ID());
|
|
get_template_part('template-parts/content', get_post_format()); endwhile; ?>
|
|
<?php else:
|
|
get_template_part('template-parts/content', 'none');
|
|
endif;
|
|
get_template_part('template-parts/related-posts'); ?>
|
|
</div>
|
|
<aside class="sidebar">
|
|
<?php get_sidebar(); ?>
|
|
</aside>
|
|
</div>
|
|
|
|
</div><!-- //main -->
|
|
|
|
</div><!-- //page -->
|
|
<?php get_footer(); ?>
|