<div class="bread semibold">
	<a href="/">
		<i class="fa fa-arrow-circle-right"></i>
		OIL
	</a>    
	<a href="<?php echo $this->url([], 'news-show-all')?>">
		<i class="fa fa-arrow-circle-right"></i>
		Aktualności
	</a>
	<i class="fa fa-arrow-circle-right"></i>
	<?php echo $this->new->title ?>

</div>
<div class="static-content">
	<?php $locale = new Zend_Locale('pl_PL'); ?>
	<h1><?php echo $this->new->title ?></h1>  
	<div class="date">
		<?php $date = new Zend_Date(strtotime($this->new->dtpublished), false, $locale); ?>
		dodano <?php echo $date->toString('d MMMM YYYY') ?>
	</div>
	<?php if ($this->image): ?>
		<img src="<?php echo $this->image ?>" class="img-left" />
	<?php endif; ?>
	<?php echo $this->new->body ?>			
	<a href="<?php echo $this->url([], 'news-show-all')?>" class="news-back">« wróć do listy wszystkich aktualności</a>

</div>