virt2/api/mod/reyt_page.html

17 lines
524 B
HTML
Executable File

{* выводит популярные статьи, загружается аяксом *}
<p class="text-center"><b>Популярные страницы</b></p>
{section name=customer loop=$list}
{if ($list[customer].id && $list[customer].id!=$global_settings.main_page)}
<p>
{if ($list[customer].alias)}
<a href="/{$list[customer].alias}.html">
{else}
<a href="/page/{$list[customer].id}">
{/if}
{$list[customer].title}
</a>
<br>
{$list[customer].description}
</p>
{/if}
{/section}