Sequenzia/app/views/post/show_partials/_related_posts_panel.php

6 lines
491 B
PHP
Raw Normal View History

2013-10-27 01:06:58 +02:00
<div>
<ul>
2016-09-15 07:44:59 +02:00
<li><?= $this->linkToIf($this->post->previous_id(), $this->t('.previous'), array('post#show', 'id' => $this->post->previous_id())) ?> <?php if ($this->post->parent_id) : ?><?= $this->linkTo($this->t('.parent'), array('post#show', 'id' => $this->post->parent_id)) ?><?php endif ?><?= $this->linkToIf($this->post->next_id(), $this->t('.next'), array('post#show', 'id' => $this->post->next_id())) ?> <?= $this->linkTo($this->t('.random'), 'post#random') ?></li>
2013-10-27 01:06:58 +02:00
</ul>
</div>