1ca9663bb6
So that if they change, the UI can notify the user for a reload
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en" class="[scrollbar-gutter:stable]">
|
|
<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 suffix=" · Music Library">
|
|
<%= assigns[:page_title] || assigns.conn.request_path %>
|
|
</.live_title>
|
|
<link rel="preconnect" href="https://rsms.me/" />
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
|
|
<link phx-track-static rel="icon" sizes="32x32" href={~p"/images/favicon.ico"} />
|
|
<link
|
|
phx-track-static
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href={~p"/images/favicon-32x32.png"}
|
|
/>
|
|
<link
|
|
phx-track-static
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="16x16"
|
|
href={~p"/images/favicon-16x16.png"}
|
|
/>
|
|
<link
|
|
phx-track-static
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
href={~p"/images/apple-touch-icon.png"}
|
|
/>
|
|
<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>
|
|
</head>
|
|
<body class="bg-white dark:bg-zinc-800">
|
|
<%= @inner_content %>
|
|
</body>
|
|
</html>
|