summaryrefslogtreecommitdiff
path: root/kbas.tpl
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2015-10-13 11:57:15 +0100
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2015-10-13 11:57:15 +0100
commite7d7a027a27ac165665c72569bb45960c4cfa680 (patch)
tree1feda3f7de40ae29973e1aa6d120ac01d191b9fa /kbas.tpl
parent5c383870ad90d9e00eb44e863fb4a1386feca020 (diff)
downloadybd-e7d7a027a27ac165665c72569bb45960c4cfa680.tar.gz
kbas.tpl needs to be in top level directory
Diffstat (limited to 'kbas.tpl')
-rw-r--r--kbas.tpl21
1 files changed, 21 insertions, 0 deletions
diff --git a/kbas.tpl b/kbas.tpl
new file mode 100644
index 0000000..fada6bb
--- /dev/null
+++ b/kbas.tpl
@@ -0,0 +1,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>Available Artifacts:</p>
+<table border="0">
+%for row in rows:
+ <tr>
+ %for col in row:
+ <td>{{col}}</td>
+ %end
+ </tr>
+%end
+</table>
+</body> \ No newline at end of file