mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-27 16:28:08 +08:00
27 lines
No EOL
500 B
PHP
27 lines
No EOL
500 B
PHP
<?php get_header(); ?>
|
|
|
|
<section class="content">
|
|
|
|
<?php hu_get_template_part('parts/page-title'); ?>
|
|
|
|
<div class="pad group">
|
|
|
|
<?php if ((category_description() != '') && !is_paged()) : ?>
|
|
<div class="notebox">
|
|
<?php echo category_description(); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php
|
|
if ( have_posts() ) {
|
|
hu_get_template_part( 'parts/post-list-articles' );
|
|
}
|
|
?>
|
|
|
|
</div><!--/.pad-->
|
|
|
|
</section><!--/.content-->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|