Packages

Multi-surface application runtime for Elixir. One TEA module renders to terminal, browser (LiveView), SSH, and MCP (agents). 30+ widgets, flexbox + CSS grid, AI agent runtime, distributed swarm with CRDTs, time-travel debugging, session recording, sandboxed REPL, and agentic commerce.

Current section

Files

Jump to
raxol lib raxol_web templates layouts root.html.heex
Raw

lib/raxol_web/templates/layouts/root.html.heex

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Raxol</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<%= csrf_meta_tag() %>
<%= live_title_tag assigns[:page_title] || "Raxol" %>
<%= Phoenix.HTML.raw(@conn && Phoenix.Controller.get_flash(@conn, :info)) %>
<%= Phoenix.HTML.raw(@conn && Phoenix.Controller.get_flash(@conn, :error)) %>
</head>
<body>
<%= @inner_content %>
</body>
</html>