mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-26 09:41:19 +08:00
32 lines
No EOL
621 B
PHP
32 lines
No EOL
621 B
PHP
<?php get_header(); ?>
|
|
|
|
<section class="content">
|
|
|
|
<?php get_template_part('parts/page-title'); ?>
|
|
|
|
<div class="pad group">
|
|
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
|
|
<article <?php post_class('group'); ?>>
|
|
|
|
<?php get_template_part('parts/page-image'); ?>
|
|
|
|
<div class="entry themeform">
|
|
<?php the_content(); ?>
|
|
<div class="clear"></div>
|
|
</div><!--/.entry-->
|
|
|
|
</article>
|
|
|
|
<?php if ( hu_is_checked('page-comments') ) { comments_template('/comments.php',true); } ?>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</div><!--/.pad-->
|
|
|
|
</section><!--/.content-->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|