mumu 0.10.0

Lava Mumu is a language for those in the now and that know
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <title>Lava Docs - Dynamic</title>
  <link rel="stylesheet" href="styles.css" />
</head>
<body>
  <!-- 
       A header with marquee container + top nav (for styling).
       The dynamic version will fill the sidebar and main content 
       via JavaScript in docs-dynamic.js 
  -->
  <header>
  </header>

  <!-- Layout container => sidebar + main docs area -->
  <div class="container">
    <div class="sidebar">
      <!-- The dynamic function & article nav will be injected here by docs-dynamic.js -->
      <div class="mb-1rem">
        <label for="component-filter-select" class="bold">Component:</label>
        <select id="component-filter-select" class="full-width mt-03">
          <option value="">All Components</option>
        </select>
      </div>

      <div class="mb-1rem">
        <label for="group-filter-select" class="bold">Group:</label>
        <select id="group-filter-select" class="full-width mt-03">
          <option value="">All Groups</option>
        </select>
      </div>

      <div class="search-box">
        <input type="text" placeholder="Filter" id="filter-input" class="w-80" />
      </div>
      <div class="function-list-container">
        <ul class="function-list" id="nav-list">
          <!-- Populated dynamically -->
        </ul>
      </div>
    </div>

    <div class="main-content" id="docs-container">
      <!-- The dynamic doc blocks (for functions & articles) appear here -->
    </div>
  </div>

  <script src="docs-dynamic.js"></script>
</body>
</html>