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-listing / global / index.php

<?php
/**
 * Posts listing wrapper
 */
$settings = $this->_get_widget_settings();
$title    = $settings['block_title'];
$tag      = $settings['title_tag'];

?>
<div class="jet-smart-listing-wrap" data-settings='<?php $this->_export_settings(); ?>' data-page="1" data-term="0">
	<div class="jet-smart-listing__heading"><?php

		if ( $title ) {
			printf( '<%1$s class="jet-smart-listing__title">%2$s</%1$s>', $tag, $title );
		} else {
			echo '<span class="jet-smart-listing__title-placeholder"></span>';
		}

		$this->_get_filters();

	?></div>
	<div class="<?php $this->_listing_classes(); ?>"><?php
		$this->_render_posts();
	?></div>
	<?php $this->_get_arrows(); ?>
</div>
<div class="jet-smart-listing-loading"></div>