-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 968 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 968 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ZeroBlog</title>
<meta name="color-scheme" content="dark">
<link rel="stylesheet" href="/css/index.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer src="https://cdn.jsdelivr.net/npm/dompurify@3/dist/purify.min.js"></script>
<meta http-equiv="Content-Security-Policy" content="
default-src 'self';
script-src 'self' cdn.jsdelivr.net;
style-src 'self' fonts.googleapis.com cdn.jsdelivr.net 'unsafe-inline';
font-src 'self' fonts.gstatic.com cdn.jsdelivr.net;
img-src 'self' https:;
connect-src 'self';
object-src 'none';
base-uri 'self';
form-action 'self';
frame-src https://www.youtube.com https://player.vimeo.com;
">
</head>
<body>
<header id="header"></header>
<zero-md id="mdLoad"></zero-md>
<footer id="footer"></footer>
<script type="module" src="/js/index.js"></script>
</body>
</html>