forked from open-crosspost/open-crosspost-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.15 KB
/
index.html
File metadata and controls
34 lines (31 loc) · 1.15 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><%= title %></title>
<meta name="description" content="<%= description %>" />
<!-- Facebook/Meta -->
<meta property="og:image" content="<%= ogImage %>" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter -->
<meta name="twitter:image" content="<%= twitterImage %>" />
<meta name="twitter:card" content="summary_large_image" />
<!-- LinkedIn -->
<meta name="linkedin:image" content="<%= linkedinImage %>" />
<link rel="icon" href="<%= favicon %>" />
<script src="https://unpkg.com/fastintear@0.1.16/dist/umd/browser.global.js"></script>
</head>
<body>
<div id="root"></div>
<script>
window.near && window.near.config({ networkId: "<%= networkId %>" });
if (typeof window.near !== "undefined") {
console.log("NEAR (via global object 'near') is ready!");
} else {
console.error("NEAR global object 'near' not found!");
}
</script>
</body>
</html>