<!DOCTYPE html>
<html>
<head>
  <title>Modules index</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <style>
    body {
      font-family: Helvetica, Arial, sans-serif;
      color: #333;
      background-color: #fff;
      border-color: #999999;
      border-width: 2px;
      margin: 2em auto;
      max-width: 50em;
      text-align: left;
      padding: 0;
    }
    ul > li {
      list-style-type: disc;
    }
    a:link, a:visited {
      color: #33e;
      text-decoration: none;
    }
    a:hover {
      color: #00f;
      text-decoration:underline;
    }
    h1 {
      color: #999;
      font-weight: 400;
      font-size: 250%;
    }
    h2 {
      border-bottom: 1px dotted #aaa;
      margin-bottom: 1em;
      color: #333;
      font-size: 200%;
      font-style: normal;
      font-weight: bold;
    }
  </style>
</head>
<body>

<h1>Modules index</h1>

<ul>
  <% foreach moduleName in params: keySet() { %>
    <li>
      <a href='<%= params: get(moduleName) %>'><%= moduleName %></a>
    </li>
  <% } %>
</ul>

</body>
</html>
