Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/application/views/gallery/article.php
		
		<div id="profile_info">
			<div class="container">
				<div class="breadcrumb">
					<a href="/">STRONA GŁÓWNA</a> \ 
					<a href="Gallery">GALERIE</a> \ 
					<a href="#">ARTYKUŁY</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">PRODUKTY</a>
						<a href="Gallery/article/<?php echo $gallery->gallery_id; ?>" class="button_white button_white_active">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">
			
			<div id="calendar_col">
			
				<?php foreach( $articles as $row ) : ?>
				
				<div class="news">
					
						<span class="date"><big><?php echo date('d', $row->date); ?></big><br/><?php echo date('M', $row->date); ?><br/><?php echo date('Y', $row->date); ?></span>
						<div class="text" style="width: 230px;">
							<h2><a href="Gallery/article/<?php echo $gallery->gallery_id; ?>?news_id=<?php echo $row->id; ?>"><?php echo substr(mb_strtoupper($row->title), 0, 23); ?></a></h2>
							<p><?php echo substr( strip_tags($row->description), 0, 71); ?>[...]</p>
						</div>
					
				</div>
				<?php endforeach; ?>
			
			</div>
			
			<?php if( $news_item ) : ?>
			<div class="artist_item_big">
				<div class="news_gallery_big" style="width: 100%;">

					<div class="text"  style="width: 90%;">
						<h2><?php echo date('d', $news_item->date); ?> <?php echo date('F', $news_item->date); ?> <?php echo date('Y', $news_item->date); ?> &nbsp; &nbsp; <?php echo substr(mb_strtoupper($news_item->title), 0, 23); ?></h2>
						<p ><?php echo strip_tags($news_item->description); ?></p>
						<?php if( !empty( $news_item->thumb) ) :	?>
						<img src="/image.php/image-name.jpg?width=570&amp;height=570&amp;cropratio=1:1&amp;image=/uploads/article/<?php echo $news_item->thumb; ?>" alt=""/>
						<?php endif; ?>
					</div>
					
				</div>
			</div>
			<?php endif; ?>
		
			<br style="clear: both;"/>
			<?php // echo $pagination->render(); ?>
			
		</div>