hueman/parts/page-title.php
nikeo 954ee038e0 improved : change page title tag from h2 to h1 to be consistent with single posts
improved : increased .page-title font-size from 1em to 1.3em
improved :  .single .post-title from 2.375em to 2.62em => to make them taller than h2 title inside the content. Fix #515

Signed-off-by: nikeo <nicolas@presscustomizr.com>
2017-06-23 17:53:50 +02:00

34 lines
No EOL
1.5 KiB
PHP

<?php if ( ! hu_is_home_empty() ) : ?>
<div class="page-title pad group">
<?php //prints the relevant metas (cat, tag, author, date, ...) for a given context : home, single post, page, 404, search, archive... ?>
<?php if ( is_home() && hu_is_checked('blog-heading-enabled') ) : ?>
<h2><?php echo hu_blog_title(); ?></h2>
<?php elseif ( is_single() ): ?>
<ul class="meta-single group">
<li class="category"><?php the_category(' <span>/</span> '); ?></li>
<?php if ( comments_open() && ( hu_is_checked( 'comment-count' ) ) ): ?>
<li class="comments"><a href="<?php comments_link(); ?>"><i class="fa fa-comments-o"></i><?php comments_number( '0', '1', '%' ); ?></a></li>
<?php endif; ?>
</ul>
<?php elseif ( is_page() ): ?>
<h1><?php echo hu_get_page_title(); ?></h1>
<?php elseif ( is_search() ): ?>
<h1><?php echo hu_get_search_title(); ?></h1>
<?php elseif ( is_404() ): ?>
<h1><?php echo hu_get_404_title(); ?></h1>
<?php elseif ( is_author() ): ?>
<h1><?php echo hu_get_author_title(); ?></h1>
<?php elseif ( is_category() || is_tag() ): ?>
<h1><?php echo hu_get_term_page_title(); ?></h1>
<?php elseif ( is_day() || is_month() || is_year() ) : ?>
<h1><?php echo hu_get_date_archive_title(); ?></h1>
<?php else: ?>
<?php if ( ! is_home() && ! hu_is_checked('blog-heading-enabled') ) : ?>
<h2><?php the_title(); ?></h2>
<?php endif; ?>
<?php endif; ?>
</div><!--/.page-title-->
<?php endif; ?>