2021-01-08 04:16:54 +08:00
|
|
|
<!DOCTYPE html>
|
2021-12-29 02:42:04 +08:00
|
|
|
<html lang="en">
|
2021-01-08 04:16:54 +08:00
|
|
|
<head>
|
2022-08-02 21:51:02 +08:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2022-10-04 14:46:55 +08:00
|
|
|
<meta name="csrf-token" content={get_csrf_token()} />
|
2022-11-30 06:34:38 +08:00
|
|
|
<link rel="icon" type="image/svg+xml" href={Routes.static_path(@conn, "/favicon.svg")} />
|
|
|
|
<link rel="alternate icon" type="image/png" href={Routes.static_path(@conn, "/favicon.png")} />
|
2022-08-02 21:51:02 +08:00
|
|
|
<%= live_title_tag(assigns[:page_title] || "Livebook") %>
|
|
|
|
<link phx-track-static rel="stylesheet" href={Routes.static_path(@conn, "/css/app.css")} />
|
2022-11-30 06:35:35 +08:00
|
|
|
<script>
|
|
|
|
window.LIVEBOOK_BASE_URL_PATH = "<%= Livebook.Config.base_url_path() %>";
|
|
|
|
</script>
|
|
|
|
<script
|
|
|
|
phx-track-static
|
|
|
|
defer
|
|
|
|
type="text/javascript"
|
|
|
|
src={Routes.static_path(@conn, "/js/app.js")}
|
|
|
|
>
|
|
|
|
</script>
|
2021-01-08 04:16:54 +08:00
|
|
|
</head>
|
2022-11-11 22:48:21 +08:00
|
|
|
<body class="bg-white">
|
2021-01-08 04:16:54 +08:00
|
|
|
<%= @inner_content %>
|
|
|
|
</body>
|
|
|
|
</html>
|