Current section
Files
Jump to
Current section
Files
lib/error_tracker/web/components/layouts/root.html.heex
<!DOCTYPE html>
<html lang="en">
<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" />
<meta name="csrf-token" content={get_csrf_token()} />
<meta name="socket-path" content={get_socket_config(:path)} />
<meta name="socket-transport" content={get_socket_config(:transport)} />
<title><%= assigns[:page_title] || "🐛 ErrorTracker" %></title>
<style nonce={@csp_nonces[:style]}>
<%= raw get_content(:css) %>
</style>
<script nonce={@csp_nonces[:script]}>
<%= raw get_content(:js) %>
</script>
</head>
<body class="bg-gray-800 text-white">
<%= @inner_content %>
</body>
</html>