2021-03-11 21:12:55 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2022-01-22 17:21:10 -05: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-03-11 21:12:55 -05:00
|
|
|
<%= csrf_meta_tag() %>
|
2022-01-22 17:21:10 -05:00
|
|
|
<%= live_title_tag(assigns[:page_title] || "Cannery", suffix: "") %>
|
|
|
|
<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-03-11 21:12:55 -05:00
|
|
|
</head>
|
|
|
|
<body class="m-0 p-0 min-w-full min-h-full">
|
|
|
|
<%= @inner_content %>
|
|
|
|
</body>
|
|
|
|
</html>
|