hueman/tmpl/page-tmpl.php
nikeo 2b0f780b93 improved : introduced hu_get_content( $tmpl ) which takes care of all content rendering inside section > .pad accross the theme
added : 6 content templates
improved : post messaging for the social links customization
added : icon size option for the social links
2017-02-24 20:29:51 +01:00

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; ?>