2023-10-11 10:42:04 -04:00
|
|
|
<!doctype html>
|
2021-07-16 14:22:03 -07:00
|
|
|
<html lang="en">
|
2022-12-09 14:34:25 -05:00
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
2025-03-12 17:00:44 +00:00
|
|
|
|
|
|
|
|
<% if (packageType === "full") { %>
|
2022-12-09 14:34:25 -05:00
|
|
|
<link rel="icon" type="image/svg+xml" href="favicon.png" />
|
2024-11-15 13:25:33 +01:00
|
|
|
<link rel="preload" href="/config.json" as="fetch" />
|
2025-03-12 17:00:44 +00:00
|
|
|
<% } %>
|
|
|
|
|
|
2022-12-09 14:34:25 -05:00
|
|
|
<meta
|
|
|
|
|
name="viewport"
|
|
|
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
|
|
|
|
|
/>
|
2025-03-05 09:18:31 -05:00
|
|
|
<title><%- brand %></title>
|
2022-12-09 14:34:25 -05:00
|
|
|
<script>
|
|
|
|
|
window.global = window;
|
|
|
|
|
</script>
|
2025-02-13 21:29:08 +05:30
|
|
|
|
2025-03-12 17:00:44 +00:00
|
|
|
<% if (packageType === "full") { %>
|
2025-02-13 21:29:08 +05:30
|
|
|
<!-- Open graph meta tags -->
|
|
|
|
|
|
2025-03-05 09:18:31 -05:00
|
|
|
<meta property="og:title" content="<%- brand %>" />
|
2025-02-13 21:29:08 +05:30
|
|
|
<meta
|
|
|
|
|
property="og:description"
|
2025-03-05 09:18:31 -05:00
|
|
|
content="You're invited to join a call on <%- brand %>"
|
2025-02-13 21:29:08 +05:30
|
|
|
/>
|
|
|
|
|
<meta property="og:type" content="website" />
|
|
|
|
|
<meta property="og:image" content="favicon.png" />
|
|
|
|
|
|
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
2025-03-05 09:18:31 -05:00
|
|
|
<meta name="twitter:title" content="<%- brand %>" />
|
2025-02-13 21:29:08 +05:30
|
|
|
<meta
|
|
|
|
|
name="twitter:description"
|
2025-03-05 09:18:31 -05:00
|
|
|
content="You're invited to join a call on <%- brand %>"
|
2025-02-13 21:29:08 +05:30
|
|
|
/>
|
|
|
|
|
<meta name="twitter:image" content="favicon.png" />
|
2025-03-12 17:00:44 +00:00
|
|
|
<% } %>
|
2022-12-09 14:34:25 -05:00
|
|
|
</head>
|
2022-02-02 15:02:40 -08:00
|
|
|
|
2024-03-13 14:58:21 +01:00
|
|
|
<!-- The default class is: .no-theme {display: none}. It will be overwritten once the app is loaded. -->
|
|
|
|
|
<body class="no-theme">
|
2022-12-09 14:34:25 -05:00
|
|
|
<div id="root"></div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|