server/lib/boardwise_web/components/layouts/root.html.heex

23 lines
787 B
Plaintext
Raw Normal View History

2023-11-28 17:50:13 +00:00
<!DOCTYPE html>
<html lang="en" class="[scrollbar-gutter:stable]">
<head>
<meta charset="utf-8" />
<meta
name="description"
content="BoardWise - Level up your chess game with a world-class coach."
/>
2023-11-28 17:50:13 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="csrf-token" content={get_csrf_token()} />
<link rel="icon" href={~p"/favicon.ico"} type="image/x-icon" />
<.live_title suffix="">
2023-11-30 17:25:00 +00:00
<%= assigns[:page_title] || "BoardWise" %>
2023-11-28 17:50:13 +00:00
</.live_title>
<link phx-track-static rel="stylesheet" href={~p"/assets/app.css"} />
<script defer phx-track-static type="text/javascript" src={~p"/assets/app.js"}>
</script>
</head>
<body class="bg-white antialiased">
<%= @inner_content %>
</body>
</html>