<!DOCTYPE html>
<html>
  <head>
    <title>in?</title>
    <link rel="stylesheet" href="style.css">
    <script src="index.js"></script>
  </head>
  <body>
    <h1>in?</h1>
    <input type="text" id="search" value="" autocomplete="off" placeholder="RegEx search" tabindex="1" autofocus>
    <label for="showhidden">Show hidden items</label> <input type="checkbox" id="showhidden">
    <div id="results">
      <span id="loading">loading…</span>
      <template id="item">
        <div id="" class="result" tabindex="0">
          <h2>
            <span class="id"></span>
            <span class="name"></span>
            <a title="edit">⚙</a>
            <span class="loc"></span>
          </h2>
          <div class="type"></div>
          <div class="note"></div>
          <div class="content"></div>
        </div>
      </template>
    </div>
    <a href="form.html" class="btn green">+</a>
  </body>
</html>