Operand

code is hell.

gram: operable

> ./lib/operable_web/components/layouts/root.html.heex

Lenses
(coming soon!)


<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="csrf-token" content={get_csrf_token()} />
    <.live_title default="Operable" suffix=" · Phoenix Framework">
      {assigns[:page_title]}
    </.live_title>

    <%= if dev_env?() do %>
      <script type="module" src="http://localhost:5173/js/app.js"></script>
      <link phx-track-static rel="stylesheet" href={"http://localhost:5173/css/app.css"} />
    <% else %>
      <script type="module" crossorigin defer phx-track-static src={Vite.Manifest.main_js()}></script>
      <link phx-track-static rel="stylesheet" href={Vite.Manifest.main_css()} />
    <% end %>

  </head>
  <body>
    {@inner_content}
  </body>
</html>