mirror of
https://github.com/JonasunderscoreJones/jonasjones.dev.git
synced 2025-10-23 00:49:19 +02:00
Added meta property to gloablly disable DarkReader on the website. This fixes an issue where the background wouldn't render properly
17 lines
No EOL
406 B
HTML
17 lines
No EOL
406 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<link rel="stylesheet" href="/src/routes/+page.css">
|
|
|
|
<head>
|
|
<meta name="darkreader-lock">
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
%sveltekit.head%
|
|
</head>
|
|
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
|
|
</html> |