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.
15 lines
521 B
15 lines
521 B
<ul class="divided middle">
|
|
<li class="subheader">{$c->__('post.comments')}</li>
|
|
{loop="$comments"}
|
|
<li class="condensed">
|
|
<span class="icon bubble">
|
|
<img src="{$value->getContact()->getPhoto('xs', $value->aid)}"/>
|
|
</span>
|
|
<span class="info">{$value->published|strtotime|prepareDate}</span>
|
|
<span>{$value->getContact()->getTrueName()}</span>
|
|
<p>
|
|
{$value->content}
|
|
</p>
|
|
</li>
|
|
{/loop}
|
|
</ul>
|