summaryrefslogtreecommitdiffstats
path: root/funcweb/funcweb/templates/minions.html
diff options
context:
space:
mode:
authorLuke Macken <lmacken@redhat.com>2008-01-17 12:07:14 -0500
committerLuke Macken <lmacken@redhat.com>2008-01-17 12:07:14 -0500
commit248ecb7c01b5b6e29134a62094441b383dad31a6 (patch)
treeda86d70eb5517a69420b94565426f5342c32a5d1 /funcweb/funcweb/templates/minions.html
parentc498c67ed6bd18be1d54f884099df10b1db06509 (diff)
downloadthird_party-func-248ecb7c01b5b6e29134a62094441b383dad31a6.tar.gz
third_party-func-248ecb7c01b5b6e29134a62094441b383dad31a6.tar.xz
third_party-func-248ecb7c01b5b6e29134a62094441b383dad31a6.zip
Switch from kid to genshi as our templating engine for FuncWeb
Diffstat (limited to 'funcweb/funcweb/templates/minions.html')
-rw-r--r--funcweb/funcweb/templates/minions.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/funcweb/funcweb/templates/minions.html b/funcweb/funcweb/templates/minions.html
new file mode 100644
index 0000000..2769ab0
--- /dev/null
+++ b/funcweb/funcweb/templates/minions.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:py="http://genshi.edgewall.org/"
+ xmlns:xi="http://www.w3.org/2001/XInclude">
+ <xi:include href="master.html"/>
+<head/>
+<body>
+ <!--
+ <div id="sidebar">
+ <h2>FuncWeb</h2>
+ <ul class="links">
+ <li><a href="#">Groups</a></li>
+ <li><a href="#">Minions</a></li>
+ <li><a href="#">Modules</a></li>
+ </ul>
+ </div>
+ -->
+ <div id="getting_started">
+ <ol id="getting_started_steps">
+ <li py:for="minion in minions.keys()">
+ <a href="${tg.url('/minion/' + minion)}">${minion}</a>
+ </li>
+ </ol>
+ </div>
+
+</body>
+</html>