Sequenzia/app/views/post/show_partials/_related_posts_panel.php
2016-09-15 01:44:59 -04:00

6 lines
491 B
PHP
Executable File

<div>
<ul>
<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>
</ul>
</div>