31 lines
1 KiB
Text
31 lines
1 KiB
Text
<!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>
|
|
{assigns[:page_title] || "Pinchflat"}
|
|
</.live_title>
|
|
<link phx-track-static rel="stylesheet" href={~p"/assets/app.css"} />
|
|
<link rel="icon" type="image/x-icon" href={~p"/favicon.ico?cachebust=2024-03-20"} />
|
|
<script defer phx-track-static type="text/javascript" src={~p"/assets/app.js"}>
|
|
</script>
|
|
</head>
|
|
<body
|
|
x-data={"{
|
|
sidebarVisible: false,
|
|
proEnabled: #{Settings.get!(:pro_enabled)},
|
|
onboarding: #{Settings.get!(:onboarding)}
|
|
}"}
|
|
class="dark text-bodydark bg-boxdark-2"
|
|
data-socket-path={Path.join(Application.get_env(:pinchflat, :base_route_path), "/live")}
|
|
>
|
|
{@inner_content}
|
|
|
|
<.donate_modal conn={@conn} />
|
|
<template x-if="!proEnabled && !onboarding">
|
|
<.upgrade_modal conn={@conn} />
|
|
</template>
|
|
</body>
|
|
</html>
|