1<?php
2/**
3 * default list template
4 *
5 * This template is used by the <blog list> syntax and can be chosen
6 * using the 'tpl' attribute. It is used to display a single entry in
7 * the list and is called multiple times (once for each shown entry)
8 *
9 * This example shows full entries and add a footer with info
10 * on tags and comments.
11 *
12 * @var helper_plugin_blogtng_entry $entry
13 */
14?>
15<div class="blogtng_list">
16<?php
17    if ($entry->tpl_entry(true, 'syntax', false)) {
18?>
19<div class="blogtng_footer level1">
20<a href="<?php $entry->tpl_link()?>" class="wikilink1 blogtng_permalink"><?php echo $this->getLang('permalink')?></a>
21    &middot;
22    <?php global $conf; $entry->tpl_created($conf['dformat'])?>
23    &middot;
24    <?php $entry->tpl_author()?>
25    &middot;
26    <a href="<?php $entry->tpl_link('the__comments')?>" class="wikilink1 blogtng_commentlink"><?php $entry->tpl_commentcount($this->getLang('0comments'),$this->getLang('1comments'),$this->getLang('Xcomments'))?></a>
27    &middot;
28    <?php echo $this->getLang('tags').": ";$entry->tpl_tags('')?>
29</div>
30<?php
31    }
32?>
33</div>
34