shithub: werc

ref: 39e0c2261a38203b96ce12d26dc2d29853d9e7ca
dir: /apps/bridge/comments_list.tpl/

View raw version
<hr>
<h2>Comments</h2>

% for(c in `{ls $comments_dir/}) {
%    if(test -s $c/body) {
        <div class="comment">
            <h5>By: <i>%(`{cat $c/user}%)</i></b> (%(`{cat $c/posted}%))
        </h5>
%       cat $c/body | escape_html | sed 's,$,<br>,'
        <hr></div>
%    }
% }