-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (48 loc) · 2.14 KB
/
index.html
File metadata and controls
51 lines (48 loc) · 2.14 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Templatical — Open-Source Email Editor SDK</title>
<meta
name="description"
content="The open-source BeeFree alternative. Embed a drag-and-drop email editor in your app."
/>
<link
href="https://fonts.bunny.net/css?family=geist:400,500,600"
rel="stylesheet"
/>
<link rel="icon" href="/logo-small.png" type="image/svg+xml" />
<script>
(function () {
try {
var stored = localStorage.getItem('templatical-theme');
var prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
var dark = stored === 'dark' || ((!stored || stored === 'auto') && prefersDark);
if (dark) document.documentElement.classList.add('dark');
} catch (_) {}
})();
</script>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://templatical.com/" />
<meta property="og:title" content="Templatical — Open-Source Email Editor SDK" />
<meta
property="og:description"
content="The open-source BeeFree alternative. Embed a drag-and-drop email editor in your app."
/>
<meta property="og:image" content="https://templatical.com/og.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Templatical — Open-Source Email Editor SDK" />
<meta
name="twitter:description"
content="The open-source BeeFree alternative. Embed a drag-and-drop email editor in your app."
/>
<meta name="twitter:image" content="https://templatical.com/og.png" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>