mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/cutslice.git
synced 2026-07-17 11:46:26 +08:00
37 lines
No EOL
910 B
PHP
37 lines
No EOL
910 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="content">
|
|
|
|
<?php if ( get_theme_mod('heading-enable','on') == 'on' ) : ?>
|
|
<?php get_template_part('inc/page-title'); ?>
|
|
<?php endif; ?>
|
|
|
|
<div class="content-inner group">
|
|
<?php get_template_part('inc/front-widgets-top'); ?>
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
<?php if ( get_theme_mod('blog-content','blog-excerpt') == 'blog-full' ) : ?>
|
|
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
<?php get_template_part('content-full'); ?>
|
|
<?php endwhile; ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
<?php get_template_part('content'); ?>
|
|
<?php endwhile; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php get_template_part('inc/front-widgets-bottom'); ?>
|
|
<?php get_template_part('inc/pagination'); ?>
|
|
|
|
<?php endif; ?>
|
|
</div>
|
|
</div><!--/.content-->
|
|
|
|
<div id="move-sidebar-content"></div>
|
|
|
|
<?php get_footer(); ?>
|