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-16 08:33:45 +02:00
|
|
|
<a class="post post-type-<?php echo TextHelper::camelCaseToHumanCase(PostType::toString($post['type'])) ?>" href="<?php echo \Chibi\UrlHelper::route('post', 'view', ['id' => $post['id']]) ?>">
|
2013-10-09 12:18:22 +02:00
|
|
|
<img src="<?php echo \Chibi\UrlHelper::route('post', 'thumb', ['id' => $post['id']]) ?>" alt="@<?php echo $post['id'] ?>"/>
|
|
|
|
</a>
|
|
|
|
<?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 ?>
|