24 lines
552 B
Smarty
24 lines
552 B
Smarty
{extends "index.tpl"}
|
|
|
|
{block "content"}
|
|
<h1>{$body.title}</h1>
|
|
|
|
{if $body.pager.count > 1}
|
|
{include "block.pager.tpl" pager=$body.pager}
|
|
{/if}
|
|
|
|
<div class="row news-list">
|
|
{if count($body.articles) > 0}
|
|
{include "block.articles.tpl" articles=$body.articles}
|
|
{else}
|
|
<div class="alert alert-info" role="alert">
|
|
V sekci se nenacházejí žádné články
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
{if $body.pager.count > 1}
|
|
{include "block.pager.tpl" pager=$body.pager}
|
|
{/if}
|
|
|
|
{/block} |