1<?php 2/** 3 * small 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 only entry abstracts with comment numbers 10 * 11 * @var helper_plugin_blogtng_entry $entry 12 */ 13?> 14<h1> 15<?php $entry->tpl_title()?> 16 · 17<?php $entry->tpl_commentcount('(%d Comments)','(%d Comment)', '(%d Comments)')?> 18</h1> 19 20<p> 21<?php $entry->tpl_abstract(50)?><br /> 22<?php $entry->tpl_permalink('read more…')?> 23</p> 24 25