layout.html.st raw

<!DOCTYPE html>
<html>
  <head>
    <link rel="stylesheet" href="/static/tacit/tacit-css.min.css"/>
    <script src="/static/htmx/htmx.min.js"></script>
  </head>
  <body>
    <section>
      <header>
        <h1>To-Do List</h1>
      </header>
      <%+ Items { items } %>
      <%+ NewForm {} %>
      <footer>
        <button hx-post="/shutdown">Quit</button>
      </footer>
    </section>
  </body>
</html>