2013-10-12 22:37:18 +02:00
|
|
|
<?php if (empty($this->context->transport->posts)): ?>
|
2013-10-09 12:19:42 +02:00
|
|
|
<p class="alert alert-warning">No posts to show.</p>
|
2013-10-07 23:17:33 +02:00
|
|
|
<?php else: ?>
|
2013-10-10 00:12:27 +02:00
|
|
|
<div class="posts paginator-content">
|
2013-10-09 12:18:22 +02:00
|
|
|
<?php foreach ($this->context->transport->posts as $post): ?>
|
2013-10-17 22:57:32 +02:00
|
|
|
<?php $this->context->post = $post ?>
|
|
|
|
<?php echo $this->renderFile('post-small') ?>
|
2013-10-09 12:18:22 +02:00
|
|
|
<?php endforeach ?>
|
|
|
|
</div>
|
2013-10-13 22:09:52 +02:00
|
|
|
|
2013-10-16 13:07:01 +02:00
|
|
|
<?php
|
|
|
|
$this->renderFile('paginator');
|
|
|
|
?>
|
2013-10-13 22:09:52 +02:00
|
|
|
<?php endif ?>
|