Current section

Files

Jump to
exq_ui lib exq_ui_web templates layout root.html.heex
Raw

lib/exq_ui_web/templates/layout/root.html.heex

<!DOCTYPE html>
<html lang="en" phx-socket={live_socket_path(@conn)}>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{csrf_meta_tag()}
<.live_title>
{assigns[:page_title] || "ExqUI"}
</.live_title>
<style>
<%= raw(render("app.css")) %>
</style>
<script>
<%= raw(render("app.js")) %>
</script>
</head>
<body>
{@inner_content}
</body>
</html>