mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
652 B
22 lines
652 B
{if="$post->next || $post->previous"}
|
|
<ul class="list card flex active middle">
|
|
{if="$post->previous"}
|
|
{autoescape="off"}
|
|
{$c->prepareTicket($post->previous)}
|
|
{/autoescape}
|
|
{else}
|
|
{autoescape="off"}
|
|
{$c->preparePreviousNextBack($post)}
|
|
{/autoescape}
|
|
{/if}
|
|
{if="$post->next"}
|
|
{autoescape="off"}
|
|
{$c->prepareTicket($post->next)}
|
|
{/autoescape}
|
|
{else}
|
|
{autoescape="off"}
|
|
{$c->preparePreviousNextBack($post)}
|
|
{/autoescape}
|
|
{/if}
|
|
</ul>
|
|
{/if}
|