Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/application/views/gallery/news_only.php
		
		<div id="profile_info">
			<div class="container">
				<div class="breadcrumb">
					<a href="/">STRONA GŁÓWNA</a> \ 
					<a href="Gallery">GALERIE</a> \ 
					<a href="#">NADCHODZĄCE WYDARZENIA</a>
				</div><br style="clear:  both;"/>	
			</div>
		</div>
	
		
		<div class="container">
			<?php echo $pagination->render(); ?>
			<?php foreach( $news as $row ) : ?>
			<div class="artist_item">
				<div class="news_gallery">
					<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">
						<h2><a href="News/show/<?php echo $row->id; ?>"><?php echo substr($row->title, 0, 23); ?></a></h2>
						<p><?php echo substr( strip_tags($row->description), 0, 71); ?>[...]</p>
					</div>
				</div>
			</div>
			
		<?php endforeach; ?>	
		<br style="clear: both;"/>
			<?php echo $pagination->render(); ?>
			
		</div>