<div class="bread semibold">
        <a href="/">
                <i class="fa fa-arrow-circle-right"></i>
                OIL
        </a>
        <i class="fa fa-arrow-circle-right"></i>
        Konferencje, kursy, szkolenia    
        <i class="fa fa-arrow-circle-right"></i>
	<?php echo $this->group->name ?>
</div>

<div class="static-content">
	<?php $locale = new Zend_Locale('pl_PL'); ?>


	<?php foreach ($this->paginator as $entry): ?>
		<div class="news-item">
			<h3><a href="<?php echo $this->url(array('group_slug' => Eppe_Slugify::slugify($this->group->name), 'id' => $entry['id'], 'slug' => Eppe_Slugify::slugify($entry['title'])), 'conference-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 if ($entry['extension']): ?>
					<img src="<?php echo $this->imagesPath . $entry['id'] . '.' . $entry['extension'] ?>" class="img-left" />
				<?php endif; ?>
				<?php echo Eppe_Tools::excerptString(strip_tags($entry['body']), 194, ' (...)') ?>
				<a href="<?php echo $this->url(array('group_slug' => Eppe_Slugify::slugify($this->group->name), 'id' => $entry['id'], 'slug' => Eppe_Slugify::slugify($entry['title'])), 'conference-show'); ?>">Czytaj więcej ›</a>
			</div>
		</div>
	<?php endforeach; ?>

	<?php
	echo $this->paginationControl($this->paginator, 'Sliding', 'pagination.phtml');
	?>
</div>