1<?php
2/**
3 * @var helper_plugin_blogtng_entry $entry
4 */
5echo $entry->get_entrycontent() ?>
6
7<p>
8    <small>
9        <?php
10            global $lang;
11            global $conf;
12            echo $this->getLang('created').": ";$entry->tpl_created($conf['dformat']);echo ", ";
13            if ($entry->entry['created'] != $entry->entry['lastmod']) {
14                echo $lang['lastmod'].": ";$entry->tpl_lastmodified($conf['dformat']);echo ", ";
15            }
16            echo $this->getLang('author').": ";$entry->tpl_author();
17            if ($entry->has_tags()) {
18                echo ", ";
19                echo $this->getLang('tags').": ";$entry->tpl_tags('');
20            }
21        ?>
22    </small>
23</p>
24