1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 16:04:24 +03:00
ifhub.club/application/frontend/skin/developer/info_list.tpl
Denis Shakhov bd007d1089 Универсальные блоки
* Экшнбар
* Список с информацией
* Список пользователей
* Запись
2014-02-06 16:33:41 +07:00

16 lines
435 B
Smarty
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{**
* Список с информацией
*
* @styles css/common.css
*}
{if $aInfoList}
<ul class="info-list">
{foreach $aInfoList as $aInfoListItem}
<li class="info-list-item">
<div class="info-list-item-label {if $iInfoListLabelWidth}width-{$iInfoListLabelWidth}{/if}">{$aInfoListItem['label']}</div>
<strong class="info-list-item-content">{$aInfoListItem['content']}</strong>
</li>
{/foreach}
</ul>
{/if}