-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
30 lines (26 loc) · 886 Bytes
/
app.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
<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
<head {{ HEAD_ATTRS }}>
{{ HEAD }}
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="true" />
<link rel="preconnect" href="https://api.rss2json.com" crossOrigin="true" />
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" media="print"
onLoad="this.media='all'" />
<noscript>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" />
</noscript>
<style>
* {
font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
::selection {
color: black;
background: white;
}
</style>
</head>
<body {{ BODY_ATTRS }}>
{{ APP }}
</body>
</html>