livebook/lib/livebook_web/templates/layout/root.html.heex

24 lines
740 B
Text
Raw Normal View History

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" />
2021-01-08 04:16:54 +08:00
<%= csrf_meta_tag() %>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="alternate icon" type="image/png" href="/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")} />
<script
defer
phx-track-static
type="text/javascript"
src={Routes.static_path(@conn, "/js/app.js")}
>
</script>
2021-01-08 04:16:54 +08:00
</head>
2021-12-29 02:42:04 +08:00
<body>
2021-01-08 04:16:54 +08:00
<%= @inner_content %>
</body>
</html>