memEx/lib/memex_web/templates/layout/root.html.heex

25 lines
781 B
Plaintext
Raw Normal View History

2021-03-11 21:12:55 -05:00
<!DOCTYPE html>
2023-01-25 22:06:24 -05:00
<html lang="en" class="m-0 p-0 w-full h-full bg-primary-800">
2021-03-11 21:12:55 -05:00
<head>
2022-01-22 15:00:30 -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-11-26 20:36:09 -05:00
<.live_title suffix={" | #{gettext("memEx")}"}>
<%= assigns[:page_title] || gettext("memEx") %>
2022-11-16 21:11:02 -05:00
</.live_title>
2022-01-22 15:00:30 -05:00
<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>
2022-02-25 21:39:22 -05:00
2023-01-25 22:06:24 -05:00
<body class="m-0 p-0 w-full h-full text-primary-400 subpixel-antialiased">
2021-03-11 21:12:55 -05:00
<%= @inner_content %>
</body>
</html>