szurubooru/src/Views/post-list.phtml

15 lines
408 B
PHTML
Raw Normal View History

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): ?>
<?php $this->context->post = $post ?>
<?php echo $this->renderFile('post-small') ?>
2013-10-09 12:18:22 +02:00
<?php endforeach ?>
</div>
2013-10-16 13:07:01 +02:00
<?php
$this->renderFile('paginator');
?>
<?php endif ?>