-
Notifications
You must be signed in to change notification settings - Fork 61
/
portal.html
78 lines (71 loc) · 2.33 KB
/
portal.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<base href="/"/>
<title>Xel</title>
<!-- Security settings -->
<meta http-equiv="Content-Security-Policy" content="
default-src
'self';
script-src
'self'
'unsafe-eval';
child-src
'self';
object-src
'none';
font-src
'self'
https://cantarell.gnome.org/fonts/Cantarell-VF.woff2
https://fonts.gstatic.com;
style-src
'self'
'unsafe-inline'
https://fonts.googleapis.com;
img-src
'self'
blob:
data:
https://xel-toolkit.org
https://camo.githubusercontent.com;
media-src
'none';
connect-src
'self'
data:
https://xel-toolkit.org
https://*.googleapis.com
https://fonts.gstatic.com;
">
<!-- Viewport settings -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<!-- Xel settings -->
<meta name="xel-theme"></meta>
<meta name="xel-icons"></meta>
<meta name="xel-locales"></meta>
<meta name="xel-accent-color"></meta>
<!-- Favicons -->
<link rel="icon" href="favicon.svg">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:100,100i,300,300i,400,400i,500,500i,700,700i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Inconsolata:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Inter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<style>
@font-face {
font-family: "Cantarell";
font-weight: 100 800;
font-display: swap;
font-style: normal;
font-named-instance: "Regular";
src: url("node_modules/cantarell/cantarell.woff2") format("woff2");
}
</style>
<!-- Scripts -->
<script src="portal-preload.js"></script>
<script src="/node_modules/marked/marked.min.js"></script>
<script src="/node_modules/prismjs/prism.js"></script>
<script src="portal.js" type="module"></script>
</head>
<body></body>
</html>