<!doctype html>

<!-- Documentation generated by [CoffeeDoc](http://github.com/omarkhan/coffeedoc) -->

<html>
<head>
  <title>CoffeeDoc</title>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" media="all" href="resources/base.css" />
</head>
<body>
  <header>
    <h1>CoffeeDoc &mdash; Module Index</h1>
  </header>
  <div class="container">
    <div class="sidebar column">
      <ul id="modulelist">
        <% for module in @modules: %>
        <li><a href="<%= module.path %>.html"><%= module.path %></a></li>
        <% end %>
      </ul>
    </div>
    <div class="content column">
      <% for module in @modules: %>
      <div class="module">
        <div class="header">
          <a href="<%= module.path %>.html"><h1><%= module.basename %></h1></a>
        </div>
        <div class="module-content">
          <% if module.docstring: %><%- module.docstring %><% end %>
          <% if module.classes.length > 0: %>
          <h3>Classes</h3>
          <ul class="classlist">
            <% for cls in module.classes: %>
            <li><a href="<%= module.path %>.html#<%= cls.name %>"><%= cls.name %></a></li>
            <% end %>
          </ul>
          <% end %>
          <% if module.functions.length > 0: %>
          <h3>Functions</h3>
          <ul class="functionlist">
            <% for func in module.functions: %>
            <li><a href="<%= module.path %>.html#<%= func.name %>"><%= func.name %>(<%= func.params.join(', ') %>)</a></li>
            <% end %>
          </ul>
          <% end %>
        </div>
      </div>
      <% end %>
    </div>
  </div>
</body>
</html>
