cannery/lib/cannery_web/components/layouts/root.html.heex

21 lines
764 B
Plaintext
Raw Normal View History

2021-03-11 21:12:55 -05:00
<!DOCTYPE html>
2022-02-26 00:16:12 -05:00
<html lang="en" class="m-0 p-0 w-full h-full bg-white">
2021-03-11 21:12:55 -05:00
<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() %>
2023-04-14 23:34:11 -04:00
<link rel="shortcut icon" type="image/jpg" href={~p"/images/cannery.svg"} />
2023-01-25 22:07:33 -05:00
<.live_title suffix={" | #{gettext("Cannery")}"}>
<%= assigns[:page_title] || gettext("Cannery") %>
</.live_title>
2023-04-14 23:34:11 -04:00
<link phx-track-static rel="stylesheet" href={~p"/css/app.css"} />
<script defer phx-track-static type="text/javascript" src={~p"/js/app.js"}>
2022-01-22 17:21:10 -05:00
</script>
2021-03-11 21:12:55 -05:00
</head>
2022-02-08 23:38:20 -05:00
2023-01-25 22:07:33 -05:00
<body class="m-0 p-0 w-full h-full subpixel-antialiased">
2021-03-11 21:12:55 -05:00
<%= @inner_content %>
</body>
</html>