1<?php
2/**
3 * default tagsearch template
4 *
5 * This template is used by the <blog tagsearch> 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 page links and add a footer with info
10 * on tags.
11 *
12 * @var helper_plugin_blogtng_entry $entry
13 */
14?>
15<li class="blogtng_tagsearch">
16    <a href="<?php $entry->tpl_link()?>" class="wikilink1 blogtng_permalink"><?php $entry->tpl_title()?></a>
17    &middot;
18    <?php global $conf;$entry->tpl_created($conf['dformat'])?>
19    &middot;
20    <?php $entry->tpl_author()?>
21    &middot;
22    Tags: <?php $entry->tpl_tags('')?>
23</li>
24