-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.63 KB
/
Copy pathindex.html
File metadata and controls
36 lines (36 loc) · 1.63 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A private, editable data app packed into one HTML file."
/>
<meta name="color-scheme" content="light" />
<meta name="theme-color" content="#f6f5ef" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Rowpack · Airtable in one HTML file" />
<meta
property="og:description"
content="Turn CSV, TSV or JSON into a private, editable app that runs entirely inside one HTML file."
/>
<meta name="twitter:card" content="summary_large_image" />
<link
rel="icon"
href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect width='64' height='64' rx='16' fill='%2320221e'/%3E%3Cg fill='%23b6ef4a' transform='skewY(-24)'%3E%3Crect x='17' y='17' width='30' height='8' rx='2'/%3E%3Crect x='17' y='29' width='30' height='8' rx='2'/%3E%3Crect x='17' y='41' width='30' height='8' rx='2'/%3E%3C/g%3E%3C/svg%3E"
/>
<meta
http-equiv="Content-Security-Policy"
content="default-src 'none'; script-src 'unsafe-inline'; style-src 'unsafe-inline'; img-src data: blob:; font-src data:; connect-src 'none'; object-src 'none'; base-uri 'none'; form-action 'none'"
/>
<title>Rowpack · Airtable in one HTML file</title>
</head>
<body>
<div id="app"></div>
<script id="rowpack-data" type="application/json">
__ROWPACK_PAYLOAD__
</script>
<script type="module" src="/src/runtime/main.tsx"></script>
</body>
</html>