mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
965 B
25 lines
965 B
<div id="discover">
|
|
<h1 class="paddedtopbottom">{$c->__('last')}</h1>
|
|
|
|
<ul class="list paddedtop">
|
|
{loop="$users"}
|
|
<li class="block">
|
|
<img class="avatar" src="{$value->getPhoto('xs')}"/>
|
|
<a href="{$c->route('blog', array($value->jid, 'urn:xmpp:microblog:0'))}">
|
|
{if="$value->getAge()"}
|
|
<span class="tag blue on_desktop">{$value->getAge()}</span>
|
|
{/if}
|
|
{if="$value->getGender()"}
|
|
<span class="tag green on_desktop">{$value->getGender()}</span>
|
|
{/if}
|
|
{if="$value->getMarital()"}
|
|
<span class="tag yellow on_desktop">{$value->getMarital()}</span>
|
|
{/if}
|
|
<span class="content">{$value->getTrueName()}</span>
|
|
<span class="desc on_desktop">{$value->description|strip_tags}</span>
|
|
</a>
|
|
</li>
|
|
{/loop}
|
|
</ul>
|
|
|
|
</div>
|