20 lines
770 B
Plaintext
20 lines
770 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en" class="p-0 m-0 w-full h-full bg-primary-800 [scrollbar-gutter:stable]">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="csrf-token" content={get_csrf_token()} />
|
|
<.live_title suffix={" | #{gettext("memEx")}"}>
|
|
{assigns[:page_title] || gettext("memEx")}
|
|
</.live_title>
|
|
<link phx-track-static rel="stylesheet" href={~p"/assets/app.css"} />
|
|
<link phx-track-static rel="stylesheet" href={~p"/assets/style.css"} />
|
|
<script defer phx-track-static type="text/javascript" src={~p"/assets/app.js"}>
|
|
</script>
|
|
</head>
|
|
|
|
<body class="p-0 m-0 w-full h-full subpixel-antialiased text-primary-400">
|
|
{@inner_content}
|
|
</body>
|
|
</html>
|