File: /home/vhosts/harpoeditore.it/httpdocs/wp-content/themes/bard/templates/grid/blog-full.php
<article id="post-<?php the_ID(); ?>" <?php post_class( 'blog-post' ); ?>>
<header class="post-header">
<?php if ( bard_options( 'blog_page_show_categories' ) === true ) : ?>
<div class="post-categories"><?php the_category( ', ' ); ?></div>
<?php endif; ?>
<?php if ( get_the_title() ) : ?>
<h2 class="post-title">
<a href="<?php esc_url( the_permalink() ); ?>"><?php the_title(); ?></a>
</h2>
<?php endif; ?>
<span class="border-divider"></span>
<div class="post-meta clear-fix">
<?php if ( bard_options( 'blog_page_show_date' ) === true ) : ?>
<span class="post-date"><?php the_time( get_option( 'date_format' ) ); ?></span>
<?php endif; ?>
</span>
</header>
<div class="post-media">
<a href="<?php echo esc_url( get_permalink() ); ?>"></a>
<?php the_post_thumbnail('bard-full-thumbnail'); ?>
</div>
<?php if ( bard_options( 'blog_page_post_description' ) !== 'none' ) : ?>
<div class="post-content">
<?php
if ( bard_options( 'blog_page_post_description' ) === 'content' ) {
the_content('');
} elseif ( bard_options( 'blog_page_post_description' ) === 'excerpt' ) {
bard_excerpt( 100 );
}
?>
</div>
<?php endif; ?>
<div class="read-more">
<a href="<?php echo esc_url( get_permalink() ); ?>"><?php esc_html_e( 'Continue Reading','bard' ); ?></a>
</div>
<footer class="post-footer">
<span class="post-author">
<?php
echo '<a href="'. esc_url(get_author_posts_url( get_the_author_meta( 'ID' ), get_the_author_meta( 'user_nicename' ) )) .'">';
echo get_avatar( get_the_author_meta( 'ID' ), 30 );
echo '</a>';
the_author_posts_link();
?>
</span>
<?php
if ( bard_options( 'single_page_show_comments' ) === true ) {
comments_popup_link( esc_html__( '0 Comments', 'bard' ), esc_html__( '1 Comment', 'bard' ), '% '. esc_html__( 'Comments', 'bard' ), 'post-comments');
}
?>
</footer>
<?php bard_related_posts( esc_html__( 'You May Also Like', 'bard' ), bard_options('blog_page_related_orderby') ); ?>
</article>