File: //home/madepabj/www/wp-content/themes/rehub-theme/content-egg-templates/Flickr/data_slider.php
<?php
/*
* Name: Slider
*
*/
?>
<?php wp_enqueue_script('flexslider'); wp_enqueue_script('flexinit');wp_enqueue_style('flexslider');?>
<?php if (isset($title) && $title): ?>
<h3 class="cegg-shortcode-title"><?php echo esc_html($title); ?></h3>
<?php endif; ?>
<div class="flexslider post_slider media_slider blog_slider loading">
<ul class="slides">
<?php
foreach ($items as $item) {
?>
<li data-thumb="<?php $params = array( 'width' => 80, 'height' => 80, 'crop' => true ); echo bfi_thumb($item['img'], $params); ?>">
<?php if (!empty ($item['title'])) :?>
<div class="bigcaption">
<?php echo esc_attr($item['title']); ?><br />
<p class="font80 mt10"><?php printf(__('Photo %s on Flickr', 'rehub-theme'), '<a href="' . $item['url'] . '" target="_blank" '.ce_printRel().'>' . $item['extra']['author'] . '</a>'); ?></p>
</div>
<?php endif;?>
<img src="<?php $params = array( 'width' => 788, 'height' => 478, 'crop' => true );echo bfi_thumb($item['img'], $params); ?>" />
</li>
<?php
}
?>
</ul>
</div>