mirror of
https://ghproxy.net/https://github.com/AlxMedia/dashscroll.git
synced 2025-08-26 07:30:29 +08:00
27 lines
No EOL
646 B
PHP
27 lines
No EOL
646 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="content">
|
|
|
|
<?php if ( get_theme_mod('heading-enable','off') == '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 while ( have_posts() ): the_post(); ?>
|
|
<?php get_template_part('content'); ?>
|
|
<?php endwhile; ?>
|
|
|
|
<?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(); ?>
|