Current File : /home/aventura/www/site/wp-content/themes/kleo/content-gallery.php
<?php
/**
 * The template for displaying posts in the Gallery post format
 *
 * @package WordPress
 * @subpackage Twenty_Fourteen
 * @since Twenty Fourteen 1.0
 */
?>

<?php
/* Helper variables for this template */
$is_single         = is_single();
$post_meta_enabled = kleo_postmeta_enabled();

$slides             = get_cfield( 'slider' );
$post_media_enabled = ( kleo_postmedia_enabled() && ! empty( $slides ) );

/* Check if we need an extra container for meta and media */
$show_extra_container = $is_single && sq_kleo()->get_option( 'has_vc_shortcode' ) && $post_media_enabled;

$post_class = 'clearfix';
if ( $is_single && get_cfield( 'centered_text' ) == 1 ) {
	$post_class .= ' text-center';
}
?>

<!-- Begin Article -->
<article id="post-<?php the_ID(); ?>" <?php post_class( array( $post_class ) ); ?>>

	<?php if ( ! $is_single ) : ?>
		<h2 class="article-title entry-title">
			<a href="<?php echo get_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
		</h2>
	<?php endif; ?>

	<?php if ( $show_extra_container ) : /* Small fix for full width layout to center media and meta */ ?>
		<div class="container">
	<?php endif; ?>

	<?php if ( $post_meta_enabled ) : ?>
		<div class="article-meta">
		<span class="post-meta">
			<?php kleo_entry_meta(); ?>
		</span>
			<?php edit_post_link( __( 'Edit', 'kleo_framework' ), '<span class="edit-link">', '</span>' ); ?>
		</div><!--end article-meta-->
	<?php endif; ?>

	<?php
	if ( $post_media_enabled ) {
		$slide_width  = sq_option( 'blog_img_single_width', 1038 );
		$slide_height = sq_option( 'blog_img_single_height', 9999 );
		if ( 9999 == $slide_height ) {
			$slide_height = null;
		}

		echo '<div class="article-media kleo-banner-slider">'
		     . '<div class="kleo-banner-items modal-gallery">';

		foreach ( $slides as $slide ) {
			if ( $slide ) {
				$image = aq_resize( $slide, $slide_width, $slide_height, true, true, true );
				//small hack for non-hosted images
				if ( ! $image ) {
					$image = $slide;
				}
				echo '<article>
					<a href="' . $slide . '" data-rel="modalPhoto[inner-gallery]">
						<img src="' . $image . '" alt="' . get_the_title() . '">'
				     . kleo_get_img_overlay()
				     . '</a>
                </article>';
			}
		}

		echo '</div>'
		     . '<a href="#" class="kleo-banner-prev"><i class="icon-angle-left"></i></a>'
		     . '<a href="#" class="kleo-banner-next"><i class="icon-angle-right"></i></a>'
		     . '<div class="kleo-banner-features-pager carousel-pager"></div>'
		     . '</div>';
	}
	?>

	<?php if ( $show_extra_container ) : /* Small fix for full width layout to center media and meta */ ?>
		</div>
	<?php endif; ?>

	<div class="article-content">

		<?php do_action( 'kleo_before_inner_article_loop' ); ?>

		<?php if ( ! $is_single ) : // Only display Excerpts for Search ?>

			<?php echo kleo_excerpt( 50 ); ?>
			<p class="kleo-continue">
				<a class="btn btn-default"
				   href="<?php the_permalink() ?>"><?php esc_html_e( sq_option( 'continue_reading_blog_text', 'Continue reading' ), 'kleo_framework' ); ?></a>
			</p>

		<?php else : ?>

			<?php the_content( esc_html__( 'Continue reading <span class="meta-nav">&rarr;</span>', 'kleo_framework' ) ); ?>
			<?php wp_link_pages( array(
				'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'kleo_framework' ),
				'after'  => '</div>',
			) ); ?>

		<?php endif; ?>

		<?php do_action( 'kleo_after_inner_article_loop' ); ?>

	</div><!--end article-content-->

</article>
<!-- End  Article -->