clipbucket/upload/styles/cb_27/layout/blocks/comments/comments.html

15 lines
476 B
HTML
Raw Normal View History

{if $comments}
<div class="cb-item-comments-container">
<div id="latest_comment_container"></div>
{foreach from=$comments.comments item=comment}
{include file="$style_dir/blocks/comments/comment.html" comment=$comment type=$type parents=$comments.parents}
{/foreach}
{else}
<div align="center" class="no_comments" id="no_comments">
{lang code='no_comments' assign=no_comments} {$no_comments|sprintf:$object_type}
</div>
</div>
{/if}