Packages

Live error monitoring to watch your Phoenix app going up in flames in real time! Open source version of error aggregation services. Hooks into Elixir's Logger to provide accurate error reporting all throughout your application.

Retired package: Release invalid

Current section

Files

Jump to
flames lib web templates layout app.html.eex
Raw

lib/web/templates/layout/app.html.eex

<!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">
<link rel="stylesheet" href="<%= Flames.Router.static_path(@conn, "/css/flames-frontend.css") %>">
<script type="text/javascript">
window.token = '<%= Application.get_env(:flames, :endpoint) |> Phoenix.Token.sign("flames", "flames") %>';
</script>
<title>Flames</title>
</head>
<body>
<%= render @view_module, @view_template, assigns %>
</body>
</html>