mirror of
https://gh.wpcy.net/https://github.com/aspirepress/site-theme.git
synced 2026-07-16 11:36:44 +08:00
16 lines
451 B
PHP
16 lines
451 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="col-sm-9 blog-main">
|
|
<?php if ( have_posts() ) : ?>
|
|
<?php while ( have_posts() ) : the_post() ?>
|
|
<?php get_template_part('content', get_post_type()) ?>
|
|
|
|
|
|
<?php akrabat3_post_nav(); ?>
|
|
<?php endwhile; ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|
|
<!-- single-talk.php -->
|