mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-28 01:26:04 +08:00
added : 6 content templates improved : post messaging for the social links customization added : icon size option for the social links
16 lines
No EOL
394 B
PHP
16 lines
No EOL
394 B
PHP
<?php while ( have_posts() ): the_post(); ?>
|
|
|
|
<article <?php post_class('group'); ?>>
|
|
|
|
<?php hu_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; ?>
|