Current File : /home/natitnen/hintact.com/wp-content/themes/ave/templates/blog/tmpl-grid.php
<?php

$format = get_post_format();

if( 'video' === $format ) {
?>
<div class="post-video">
	<?php $this->entry_thumbnail( 'liquid-grid' ) ?>
	<?php $this->entry_tags() ?>
</div>
<?php
} else if( 'link' !== $format ) {
	$this->entry_thumbnail( 'liquid-grid' );
}
?>

<div class="liquid-blog-item-inner">
	<a href="<?php the_permalink()?>" class="liquid-overlay-link"><?php the_title() ?></a>
	<header class="liquid-lp-header">
		<?php $this->entry_title( 'font-weight-bold h3 size-sm' ); ?>
		<div class="liquid-lp-details">
			<time class="liquid-lp-date" datetime="<?php echo get_the_date( 'c' ); ?>"><?php printf( _x( '%s ago', '%s = human-readable time difference', 'ave' ), human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) ); ?></time>
			<?php esc_html_e( 'in', 'ave' ); ?>
			<?php $this->entry_tags(); ?>
		</div><!-- /.liquid-lp-details -->
	</header>
	
	<?php $this->entry_content(); ?>
	
	<footer class="liquid-lp-footer">
		<a href="<?php the_permalink() ?>" class="btn btn-naked text-uppercase ltr-sp-1 size-sm font-weight-bold liquid-lp-read-more">
			<span>
				<span class="btn-line btn-line-before"></span>
				<span class="btn-txt"><?php esc_html_e( 'Continue Reading', 'ave' ) ?></span>
				<span class="btn-line btn-line-after"></span>
			</span>
		</a>
	</footer>
	
</div><!-- /.liquid-blog-item-inner -->