comments_list.tpl (325B)
1 <hr> 2 <h2>Comments</h2> 3 4 % for(c in `{ls $comments_dir/}) { 5 % if(test -s $c/body) { 6 <div class="comment"> 7 <h5>By: 8 <b><i>% 9 (`{cat $c/user | sed 's/:.*//g'}%) 10 </i></b> 11 (%(`{cat $c/posted}%)) 12 </h5> 13 % cat $c/body | escape_html | sed 's,$,<br>,' 14 <hr></div> 15 % } 16 % } 17