summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'roots.ezt')
-rw-r--r--roots.ezt29
1 files changed, 29 insertions, 0 deletions
diff --git a/roots.ezt b/roots.ezt
new file mode 100644
index 0000000..5d939ca
--- /dev/null
+++ b/roots.ezt
@@ -0,0 +1,29 @@
+[# setup page definitions]
+ [define page_title]Repository Listing[end]
+ [define help_href][docroot]/help_rootview.html[end]
+[# end]
+
+[include "include/header.ezt" "directory"]
+
+<table cellspacing="1" cellpadding="2">
+<thead>
+<tr>
+ <th class="vc_header_sort">Name</th>
+</tr>
+</thead>
+
+<tbody>
+[for roots]
+ <tr class="vc_row_[if-index roots even]even[else]odd[end]">
+ <td>
+ <a href="[roots.href]">
+ <img src="[docroot]/images/dir.png" alt="" class="vc_icon" />
+ [roots.name]</a>
+ </td>
+ </tr>
+[end]
+</tbody>
+
+</table>
+
+[include "include/footer.ezt"]