-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 2.11 KB
/
index.html
File metadata and controls
28 lines (26 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ getenv "VITE_BRAND_NAME" | default "ZKsync" }} Block Explorer</title>
<meta charset="UTF-8" />
<meta name="description" content='{{ getenv "VITE_BRAND_NAME" | default "ZKsync" }} Block Explorer provides all the information to deep dive into transactions, blocks, contracts, and much more. Deep dive into {{ getenv "VITE_BRAND_NAME" | default "ZKsync" }} and explore the network.' />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<meta property="og:title" content='{{ getenv "VITE_BRAND_NAME" | default "ZKsync" }} Block Explorer' />
<meta property="og:description" content='{{ getenv "VITE_BRAND_NAME" | default "ZKsync" }} Block Explorer provides all the information to deep dive into transactions, blocks, contracts, and much more. Deep dive into {{ getenv "VITE_BRAND_NAME" | default "ZKsync" }} and explore the network.' />
<meta property="og:image" content='{{ getenv "VITE_OG_IMAGE_URL" | default "https://explorer.zksync.io/preview.png" }}' />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content='{{ getenv "VITE_BRAND_NAME" | default "ZKsync" }} Block Explorer' />
<link rel="alternate icon" type='{{ getenv "VITE_ALT_FAVICON_IMAGE_TYPE" | default "image/x-icon" }}' href='{{ getenv "VITE_ALT_FAVICON_IMAGE_URL" | default "/favicon.ico" }}' />
<link rel="icon" type='{{ getenv "VITE_FAVICON_IMAGE_TYPE" | default "image/svg+xml" }}' href='{{ getenv "VITE_FAVICON_IMAGE_URL" | default "/favicon.svg" }}' />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="true" />
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<script src="/config.js"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>