bookyard 0.1.0

Build and locally edit a bookshelf for multiple mdBook projects.
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bookyard Editor</title>
    <link rel="stylesheet" href="/__bookyard/editor/style.css">
  </head>
  <body>
    <main>
      <header>
        <p>Bookyard</p>
        <h1>Editor</h1>
        <button id="reload" type="button">Reload</button>
        <button id="save" type="button">Save</button>
        <button id="build" type="button">Rebuild</button>
      </header>
      <section class="layout">
        <aside>
          <h2>Books</h2>
          <div id="books"></div>
        </aside>
        <section>
          <h2>Config JSON</h2>
          <textarea id="config" spellcheck="false"></textarea>
          <p id="status"></p>
        </section>
      </section>
    </main>
    <script src="/__bookyard/editor/app.js"></script>
  </body>
</html>