Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/application/views/gallery/exposure.phpOLD |
<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->gallery_name); ?></a>
</div><br style="clear: both;"/>
<a href="#"><img src="/image.php/image-name.jpg?width=300&height=300&cropratio=1:1&image=/uploads/user/images/<?php echo $gallery->user->logo; ?>" alt="" class="thumb_u"/></a>
<div class="gallery_description">
<span class="title"><?php echo $gallery->gallery_name; ?></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/news/<?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">EKSPOZYCJE</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(); ?>
<?php foreach( $exposures 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="Exposure/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>