1<?php
2
3/**
4 * "mnml-blog" RSS feed template
5 *
6 * ATTENTION: this BlogTNG-template is designed for the DowkuWiki-template
7 *            "mnml-blog". It may uses styles out of it and may not work with
8 *            other DowkuWiki-templates!
9 *
10 *
11 * LICENSE: This file is open source software (OSS) and may be copied under
12 *          certain conditions. See COPYING file for details or try to contact
13 *          the author(s) of this file in doubt.
14 *
15 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
16 * @author ARSAVA <dokuwiki@dev.arsava.com>
17 * @link https://www.dokuwiki.org/template:mnml-blog
18 * @link https://www.dokuwiki.org/plugin:blogtng
19 * @TODO everything
20 */
21
22?>
23<?php echo $entry->get_entrycontent() ?>
24
25<p>
26    <small>
27        This blog post was created <?php $entry->tpl_created("on %Y-%m-%d at %H:%M")?> by
28        <?php $entry->tpl_author()?>.
29        <?php if ($entry->has_tags()):?>
30        It is tagged with <?php $entry->tpl_tagstring("")?>.
31        <?php endif ?>
32    </small>
33</p>
34