* Made the homepage _slightly_ more useful * Very minor refactor in alpine body-level object
18 lines
689 B
Text
18 lines
689 B
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-02-29"} />
|
|
<script defer phx-track-static type="text/javascript" src={~p"/assets/app.js"}>
|
|
</script>
|
|
</head>
|
|
<body x-data="{ sidebarVisible: false }" class="dark text-bodydark bg-boxdark-2">
|
|
<%= @inner_content %>
|
|
</body>
|
|
</html>
|