1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 09:24:25 +03:00
ifhub.club/application/frontend/skin/synio/components/activity/blocks/recent-topics.tpl
2016-10-04 11:40:49 +07:00

17 lines
504 B
Smarty

{**
* Последняя активность
* Последние топики
*}
{component_define_params params=[ 'topics' ]}
<div class="ls-activity-block-recent-items">
{foreach $topics as $topic}
{component 'activity' template='recent-item'
user = $topic->getUser()
topic = $topic
date = $topic->getDatePublish()}
{foreachelse}
{component 'blankslate' text={lang 'common.empty'} mods='no-background'}
{/foreach}
</div>