1<?php 2/** 3 * default recent comments template 4 * 5 * This template is used in the <blog recentcomments> syntax. 6 * 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 helper_plugin_blogtng_entry $entry 10 * @var dokuwiki\plugin\blogtng\entities\Comment $comment 11 */ 12?> 13<li><div class="li"> 14 <a href="<?php $entry->tpl_link('comment_'.$comment->getCid())?>" class="wikilink1"><?php $entry->tpl_title()?></a><br /> 15 <?php global $lang; echo $lang['by']?> 16 <?php $comment->tpl_name();?> 17 <?php $comment->tpl_created('%f')?> 18</div></li> 19 20