Current section
Files
Jump to
Current section
Files
lib/gust_web/components/layouts/root.html.heex
<!DOCTYPE html>
<html lang="en">
<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 default="Gust" suffix=" · GustFlow Framework">
{assigns[:page_title]}
</.live_title>
<link phx-track-static rel="stylesheet" href={GustWeb.Layouts.asset_path(@conn, :css)} />
<script
defer
phx-track-static
type="text/javascript"
src={GustWeb.Layouts.asset_path(@conn, :js)}
>
</script>
</head>
<body>
{@inner_content}
</body>
</html>