friendicablog/view/theme/blog/wall_thread_comment.tpl

39 lines
1.5 KiB
Smarty
Raw Normal View History

2013-01-23 15:55:59 +01:00
<li class="comment even thread-even depth-$item.thread_level" id="li-comment-$item.id">
<article id="comment-$item.id" class="comment">
2013-01-22 17:50:37 +01:00
<footer class="comment-meta">
<div class="comment-author vcard">
2013-01-23 15:55:59 +01:00
<img class="avatar avatar-68 photo avatar-default " alt="" title="$item.name" src="$item.thumb" height="68" width="68">
<span class="fn dropmenu">
<a href="$item.profile_url" rel="external nofollow" class="url" title="$item.linktitle">$item.name</a>
<ul class="menu-popup" id="author-menu-$item.id">
$item.item_photo_menu
</ul>
2013-01-22 17:50:37 +01:00
</span>
2013-01-23 15:55:59 +01:00
<a href="$item.plink.href">
<time datetime="$item.localtime">$item.ago</time>
2013-01-22 17:50:37 +01:00
</a>
2013-01-23 15:55:59 +01:00
<span class="says">said:
{{ if $item.threaded }}
<a href="#respond-$item.id" class="reply-link">(reply)</a>
{{ endif }}
</span>
2013-01-22 17:50:37 +01:00
</div>
<!-- .comment-author .vcard -->
</footer>
<div class="comment-content">
2013-01-23 15:55:59 +01:00
<p>$item.body</p>
2013-01-22 17:50:37 +01:00
</div>
<div class="reply">
2013-01-23 15:55:59 +01:00
{{ for $item.children as $child }}
{{ inc wall_thread_comment.tpl with $item=$child }}{{ endinc }}
{{ endfor }}
</div>
2013-01-22 17:50:37 +01:00
<!-- .reply -->
</article>
<!-- #comment-## -->
2013-01-23 15:55:59 +01:00
$item.comment
</li>