-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathapp.html
More file actions
26 lines (24 loc) · 953 Bytes
/
app.html
File metadata and controls
26 lines (24 loc) · 953 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Discord Meta -->
<meta name="og:site_name" content="Meteor Client">
<meta name="og:type" content="object">
<meta name="og:image" content="https://meteorclient.com/icon.png">
<meta name="og:title" content="Home">
<meta name="og:url" content="https://meteorclient.com">
<meta name="theme-color" content="#913de2">
<meta name="og:description" content="The website for Meteor Client.">
<!-- Other Stuff -->
<meta charset="utf-8"/>
<link rel="icon" href="%sveltekit.assets%/icon.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="preconnect" href="fonts.googleapis.com">
<link rel="stylesheet" href="/css/style.css">
<title>Meteor Client</title>
%sveltekit.head%
</head>
<body>
<div>%sveltekit.body%</div>
</body>
</html>