2022-05-21 09:23:55 +02:00
|
|
|
<!DOCTYPE html>
|
2022-10-26 18:10:48 +02:00
|
|
|
<html lang="en" class="dark">
|
2023-01-09 21:16:08 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
%sveltekit.head%
|
2023-02-22 18:53:08 +01:00
|
|
|
<script>
|
|
|
|
/**
|
|
|
|
* Prevent FOUC on page load.
|
|
|
|
*/
|
|
|
|
const theme = localStorage.getItem('color-theme') || 'dark';
|
|
|
|
if (theme === 'light') {
|
|
|
|
document.documentElement.classList.remove('dark');
|
|
|
|
}
|
|
|
|
</script>
|
2023-01-09 21:16:08 +01:00
|
|
|
</head>
|
2022-07-16 06:18:17 +02:00
|
|
|
|
2023-01-09 21:16:08 +01:00
|
|
|
<body class="bg-immich-bg dark:bg-immich-dark-bg">
|
|
|
|
<div>%sveltekit.body%</div>
|
|
|
|
</body>
|
|
|
|
</html>
|