<div class="news-home">
	<h2><i class="fa fa-bookmark-o"></i> Aktualności z Izby</h2>
	<?php $locale = new Zend_Locale('pl_PL'); ?>
	<?php foreach ($this->news as $entry): ?>
		<div class="news-item">
			<h3><a href="<?php echo $this->url(array('id'=> $entry->id, 'slug' => Eppe_Slugify::slugify($entry->title)), 'news-show'); ?>"><?php echo $entry->title ?></a></h3>
			<div class="date">
				<?php $date = new Zend_Date(strtotime($entry->dtpublished), false, $locale); ?>
				dodano <?php echo $date->toString('d MMMM YYYY')?>
			</div>
			<div class="news-item-short">
				<?php echo Eppe_Tools::excerptString(strip_tags($entry->body, '<a>'), 145, ' (...)'); ?>
				<a href="<?php echo $this->url(array('id'=> $entry->id, 'slug' => Eppe_Slugify::slugify($entry->title)), 'news-show'); ?>">Czytaj więcej ›</a>
			</div>
		</div>
	<?php endforeach; ?>
</div>