mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-27 01:22:30 +08:00
23 lines
No EOL
533 B
PHP
23 lines
No EOL
533 B
PHP
<?php get_header(); ?>
|
|
|
|
<section class="content">
|
|
<?php if ( ! hu_is_home_empty() ) : ?>
|
|
<?php hu_get_template_part('parts/page-title'); ?>
|
|
|
|
<div class="pad group">
|
|
|
|
<?php if ( hu_is_checked('featured-posts-enabled') ) { get_template_part('parts/featured'); } ?>
|
|
|
|
<?php
|
|
if ( have_posts() ) {
|
|
hu_get_template_part( 'parts/post-list-articles' );
|
|
}
|
|
?>
|
|
|
|
</div><!--/.pad-->
|
|
<?php endif; ?>
|
|
</section><!--/.content-->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|