-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.html
More file actions
42 lines (35 loc) · 1.27 KB
/
notes.html
File metadata and controls
42 lines (35 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<script>
(function () {
var stored = localStorage.getItem('theme');
var prefers = window.matchMedia('(prefers-color-scheme:dark)').matches;
if (stored === 'dark' || (!stored && prefers)) {
document.documentElement.classList.add('dark-mode');
}
})();
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Notes - Robin's Site</title>
<link rel="stylesheet" href="css/shared.css" />
<link rel="stylesheet" href="css/notes.css" />
<template id="meta-include" data-src="components/meta-tags.html"></template>
<meta http-equiv="Content-Security-Policy" content="
default-src 'self';
script-src 'self' https://cdn.jsdelivr.net;
style-src 'self' 'unsafe-inline';
connect-src 'self';
font-src 'self';
img-src 'self' data:;">
</head>
<body>
<header id="header-placeholder"></header>
<section id="courses-list"></section>
<footer id="footer-placeholder"></footer>
<script type="module" src="js/header-footer.js"></script>
<script src="notes/js/notes.js"></script>
<script defer src="/_vercel/insights/script.js"></script>
</body>
</html>