summaryrefslogtreecommitdiff
path: root/kbas.tpl
blob: 269e65d57711b1bde15a5b059315fef82b52726e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta http-equiv="content-type"
 content="text/html; charset=ISO-8859-1">
  <title>index</title>
  <link rel="stylesheet" type="text/css" href="{{css}}"/>
</head>
<body>
%#template to generate a HTML table from a list 
<p>{{title}}</p>
<table border="0">
%for row in content:
  <tr>
  %for column in row:
    <td>{{column}}</td>
  %end
  </tr>
%end
</table>
</body>