File: /home/mmickelson/martyknows.com/wp-content/themes/blaskan/template-parts/content-big.php
<?php
/**
* Template part for displaying posts
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package blaskan
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'big-post col-md-12' ); ?>>
<header class="entry-header">
<?php if ( 'post' === get_post_type() ) : ?>
<div class="entry-meta">
<?php blaskan_posted_on(); ?>
</div><!-- .entry-meta -->
<?php endif; ?>
<?php
if ( is_sticky() ) {
the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark"><i class="fa fa-thumb-tack" aria-hidden="true"></i>', '</a></h2>' );
} else {
the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
}
?>
<?php if ( has_post_thumbnail() && blaskan_jetpack_featured_image() ) {
echo '<div class="entry-thumbnail"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">';
the_post_thumbnail( 'big-blog-post' );
echo '</a></div>';
} ?>
</header><!-- .entry-header -->
<div class="entry-content">
<?php
the_content( sprintf(
/* translators: %s: Name of current post. */
wp_kses( __( 'Continue reading %s <span class="meta-nav">→</span>', 'blaskan' ), array( 'span' => array( 'class' => array() ) ) ),
the_title( '<span class="screen-reader-text">"', '"</span>', false )
) );
wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'blaskan' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
</article><!-- #post-## -->