additional_plugins/serendipity_event_mobile_output/templates/iphone.app/comments.tpl
2011-12-13 12:29:05 +01:00

28 lines
1,012 B
Smarty

<div id="comments">
{foreach from=$comments item=comment name="comments"}
<hr/>
<div class="comment_source">
<span class="comment_source_date">{$comment.timestamp|@formatTime:$CONST.DATE_FORMAT_SHORT}</span>
<span class="comment_source_author">
{if $comment.email}
<a href="mailto:{$comment.email}">{$comment.author|@default:$CONST.ANONYMOUS}</a>
{else}
{$comment.author|@default:$CONST.ANONYMOUS}
{/if}
</span>
{if $comment.url}
(<a class="comment_source_url" href="{$comment.url}" title="{$comment.url|@escape}">{$CONST.HOMEPAGE}</a>)
{/if}
</div>
<div class="comment_body">
{if $comment.body == 'COMMENT_DELETED'}
{$CONST.COMMENT_IS_DELETED}
{else}
{$comment.body}
{/if}
</div>
{foreachelse}
<div class="serendipity_center nocomments">{$CONST.NO_COMMENTS}</div>
{/foreach}
</div>