Packages

WebSocket-first Elixir framework with auto-generated HTTP MCP APIs

Current section

Files

Jump to
dialup priv templates dialup.new root.html.heex.eex
Raw

priv/templates/dialup.new/root.html.heex.eex

<!DOCTYPE html>
<html lang="{@lang}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{@title}</title>
</head>
<body>
<div id="dialup-root">
{raw(@inner_content)}
</div>
<script src="/idiomorph.js"></script>
<script src="/dialup.js"></script>
<script>
Dialup.connect({
/* Uncomment to add JS hooks for external library integration:
hooks: {
MyHook: {
mounted(el) { },
updated(el) { },
destroyed(el) { }
}
}
*/
});
</script>
</body>
</html>