big-moving.ru/api/mod/reyt_page.html

17 lines
528 B
HTML
Raw Normal View History

2022-06-24 15:29:23 +05:00
{* выводит популярные статьи, загружается аяксом *}
{*<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}