Current section
Files
Jump to
Current section
Files
templates/combo_lite/lib/user_web/components/layouts/root.html.heex
<!DOCTYPE html>
<html lang="en" class="[scrollbar-gutter:stable]" data-base-path={get_base_path()}>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="csrf-token" content={get_csrf_token()} />
<link rel="icon" href="/icons/favicon.ico" sizes="32x32" />
<%= if assigns[:page_title] do %>
<.live_title suffix=" · ComboLite.UserWeb">
<%= assigns[:page_title] %>
</.live_title>
<% else %>
<.live_title>
ComboLite.UserWeb
</.live_title>
<% end %>
<link phx-track-static rel="stylesheet" href={~p"/assets/app.css"} />
<script defer phx-track-static src={~p"/assets/app.js"}>
</script>
</head>
<body class="bg-white antialiased">
<%= @inner_content %>
</body>
</html>