1<?php 2/** 3 * default comment template 4 * 5 * This template is called from $entry->tpl_comments to display 6 * comments. It is used to display a single comment in 7 * the list and is called multiple times (once for each shown comment) 8 * 9 * @var dokuwiki\plugin\blogtng\entities\Comment $comment 10 */ 11 12?> 13<div class="blogtng_comment blogtng_comment_status_<?php $comment->tpl_status()?>" id="comment_<?php $comment->tpl_cid()?>"> 14 <img src="<?php $comment->tpl_avatar(48,48)?>" class="avatar" width="48" height="48" alt="" align="left" /> 15 16 17 <?php $comment->tpl_comment()?> 18 <div class="blogtng__commentmetadatarow"> 19 <?php $comment->tpl_number()?> | 20 <?php $comment->tpl_hcard()?> | 21 <?php $comment->tpl_created()?> | 22 <?php $comment->tpl_number(true, '%d', $comment->getLang('comment_reply'))?> 23 </div> 24</div> 25