Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/application/views/gallery/exposure.php
		
		<div id="profile_info">
			<div class="container">
				<div class="breadcrumb">
					<a href="#">STRONA GŁÓWNA</a> \ 
					<a href="#">GALERIE</a> \ 
					<a href="#"><?php echo mb_strtoupper($gallery->user->username); ?></a>
				</div><br style="clear:  both;"/>	
				<a href="#"><img src="/image.php/image-name.jpg?width=300&amp;height=300&amp;cropratio=1:1&amp;image=/uploads/user/images/<?php echo $gallery->user->logo; ?>" alt="" class="thumb_u"/></a>
				
				<div class="gallery_description">
					<span class="title"><?php echo $gallery->user->username; ?></span><br style="clear:  both;"/>	
					<?php echo $gallery->gallery_content; ?>
				</div>
				<div class="icons_social">
					<div class="fb-like" data-href="http://<?php echo $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; ?>" data-layout="box_count" data-action="recommend" data-show-faces="true" data-share="false"></div>
				</div>
				
			</div>
		</div>
	
		<div class="shadow">
			<div class="container">

				<form>
					<fieldset class="search buttons">
						
						<a href="Gallery/show/<?php echo $gallery->gallery_id; ?>" class="button_white">NADCHODZĄCE WYDARZENIA</a>
						<a href="Gallery/artist/<?php echo $gallery->gallery_id; ?>" class="button_white">WSPÓŁPRACUJĄCY ARTYŚCI</a>
						<a href="Gallery/exposure/<?php echo $gallery->gallery_id; ?>" class="button_white button_white_active">PRODUKTY</a>
						<a href="Gallery/article/<?php echo $gallery->gallery_id; ?>" class="button_white">ARTYKUŁY</a>
						<a href="Gallery/photos/<?php echo $gallery->gallery_id; ?>" class="button_white">GALERIA ZDJĘĆ</a>
	
					</fieldset>
				</form>
			
			</div>
		</div>
		
		<div class="container">
			<?php echo $pagination->render(); ?><br style="clear: both;"/>
			<div class="instagram">
				<?php foreach( $products as $product ) : ?>
				<div class="item" rel="m<?php echo $product->id; ?>">
					<a href="#"><img src="/image.php/image-name.jpg?width=134&amp;height=134&amp;cropratio=1:1&amp;image=/<?php echo $product->thumb; ?>" alt=""/></a>
					<span id="m<?php echo $product->id; ?>" class="more_info">
						<?php echo $product->price; ?>zł<br/><a class="showDetailProduct" href="#" rel="<?php echo $product->id; ?>">DO KOSZYKA</a><br/><a class="showDetailProduct" href="#" rel="<?php echo $product->id; ?>">SZCZEGÓŁY</a>
					</span>
				</div>
				<?php endforeach; ?>
				
			</div><br style="clear: both;"/>
			<?php echo $pagination->render(); ?>
			
		</div>
		
		<script>
		$(window).ready( function() {
			$('.item').hover( function() {
				var l_show = $(this).attr('rel');
				$('#'+l_show).show();
			},
			function() {
				var l_show = $(this).attr('rel');
				$('#'+l_show).hide();
			});
			
			$('.profile_description_show').click( function() {
				$('.profile_description').show();
				$('.profile_description_hide').show();
				$('.profile_description_show').hide();
				return false;
			});
			
			$('.profile_description_hide').click( function() {
				$('.profile_description').hide();
				$('.profile_description_show').show();
				return false;
			});
		});
		</script>