Current section

Files

Jump to
ash_admin lib ash_admin templates admin.html.eex
Raw

lib/ash_admin/templates/admin.html.eex

<!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, minimum-scale=1.0"/>
<%= csrf_meta_tag() %>
<title><%= assigns[:page_title] || "Ash Admin" %></title>
<style><%= raw(render("app.css")) %></style>
<link href="https://cdnjs.cloudflare.com/ajax/libs/jsoneditor/9.5.1/jsoneditor.min.css" rel="stylesheet" type="text/css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jsoneditor/9.5.1/jsoneditor.min.js"></script>
</head>
<body>
<%= @inner_content %>
</body>
</body>
<script><%= raw(render("app.js")) %></script>
</html>