summaryrefslogtreecommitdiffstats
path: root/funcweb/funcweb/templates/minion.html
blob: dcb5c6f2f8615e17bb7bc2f9e7b3015a0246e744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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">

<body>
    <div id="modules" class="modules">
    <ul py:for="minion, mods in modules.items()">
      <h2>${minion[:13]}</h2>
      <li py:for="module in mods">
        <a href="#" onclick="myj('#col4').hide();myj('#col3').hide().load('/minion/${minion}/${module}').show('slow');">${module}</a>
      </li>
    </ul>
  </div>
</body>
</html>