chiya/lib/chiya_web/components/layouts/root_public.html.heex

24 lines
854 B
Text
Raw Normal View History

<!DOCTYPE html>
<html lang="en" style="scrollbar-gutter: stable;" data-theme={@settings.theme} data-variant={theme_variant(@settings.theme)}>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="csrf-token" content={get_csrf_token()} />
2023-03-23 08:24:13 +01:00
<.live_title suffix={" · #{@settings.title}"}>
<%= assigns[:page_title] || "Home" %>
</.live_title>
2023-03-23 08:24:13 +01:00
<.favicon />
<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>
2023-03-27 11:53:09 +02:00
<style><%= @settings.custom_css %></style>
</head>
<body class="bg-theme-background antialiased">
<.admin_bar current_user={@current_user} />
<%= @inner_content %>
2023-03-27 11:53:09 +02:00
<%= @settings.custom_html %>
</body>
</html>