Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/jet-blog   php

Repository URL to install this package:

Version: 2.2.12 

/ jet-blog-smart-tiles / global / post.php

<?php
/**
 * Post item template
 */
?>
<div class="jet-smart-tiles">
	<div class="jet-smart-tiles__box" <?php $this->_get_post_bg_attr(); ?>>
		<?php $this->_post_terms(); ?>
		<div class="jet-smart-tiles__box-content">
			<div class="jet-smart-tiles__box-content-inner">
				<?php include $this->_get_global_template( 'post-meta' ); ?>
				<?php $this->_render_meta( 'title_related', 'jet-title-fields', array( 'before' ) ); ?>
				<?php the_title( '<div class="jet-smart-tiles__box-title">', '</div>' ); ?>
				<?php $this->_render_meta( 'title_related', 'jet-title-fields', array( 'after' ) ); ?>
				<?php $this->_render_meta( 'content_related', 'jet-content-fields', array( 'before' ) ); ?>
				<?php $this->_post_excerpt( '<div class="jet-smart-tiles__box-excerpt">', '</div>' ); ?>
				<?php $this->_render_meta( 'content_related', 'jet-content-fields', array( 'after' ) ); ?>
			</div>
		</div>
		<a href="<?php the_permalink(); ?>" class="jet-smart-tiles__box-link" aria-label="<?php echo esc_attr( get_the_title() ); ?>"></a>
	</div>
</div>