Sequenzia/app/views/post/show_empty.php
2013-10-26 18:06:58 -05:00

16 lines
525 B
PHP
Executable File

<div id="post-view">
<div class="sidebar">
<div>
<h5><?= $this->t('.related._') ?></h5>
<ul>
<li><?= $this->linkTo($this->t('.related.previous'), array('post#show', 'id' => $this->params()->id - 1)) ?></li>
<li><?= $this->linkTo($this->t('.related.next'), array('post#show', 'id' => $this->params()->id + 1)) ?></li>
<li><?= $this->linkTo($this->t('.related.random'), 'post#random') ?></li>
</ul>
</div>
</div>
<div>
<p><?= $this->t('.info') ?></p>
</div>
</div>