1<?php
2
3/**
4 * "mnml-blog" comment template
5 *
6 * This template is called from $entry->tpl_comments to display
7 * comments. It is used to display a single comment in the list
8 * and is called multiple times (once for each shown comment)
9 *
10 * ATTENTION: this BlogTNG-template is designed for the DowkuWiki-template
11 *            "mnml-blog". It may uses styles out of it and may not work with
12 *            other DowkuWiki-templates!
13 *
14 *
15 * LICENSE: This file is open source software (OSS) and may be copied under
16 *          certain conditions. See COPYING file for details or try to contact
17 *          the author(s) of this file in doubt.
18 *
19 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
20 * @author ARSAVA <dokuwiki@dev.arsava.com>
21 * @link https://www.dokuwiki.org/template:mnml-blog
22 * @link https://www.dokuwiki.org/plugin:blogtng
23 */
24
25?>
26<div class="blogtng_comment blogtng_comment_status_<?php $comment->tpl_status(); ?>" id="comment_<?php $comment->tpl_cid(); ?>">
27    <div>
28        <img src="<?php $comment->tpl_avatar(48, 48); ?>" class="avatar" width="48" height="48" alt="" align="left" />
29        <div><?php $comment->tpl_hcard(); ?> No. <?php $comment->tpl_number(false); ?> @ <?php $comment->tpl_created(); ?></div>
30        <br />
31    </div>
32    <?php $comment->tpl_comment(); ?>
33    <div class="replytocomment">
34        <?php $comment->tpl_number(true, "» Reply"); ?>
35    </div>
36</div>
37