~kris/9p

krisyotam.net

ref: a15f9ce362ba4d456a781ce61e1046f8259a3ee0 krisyotam.net/apps/bridge/comments_list.tpl -rwxr-xr-x 286 bytes
a15f9ce3 — Kris Yotam initial werc site scaffold 4 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
<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>
%    }
% }