-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.html
85 lines (81 loc) · 2.8 KB
/
index.html
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/src/assets/ignite_logomark.svg"
/>
<meta name="author" content="PyTorch-Ignite Team" />
<meta name="creator" content="PyTorch-Ignite Team" />
<meta name="publisher" content="PyTorch-Ignite Team" />
<meta
name="description"
content="The easiest way to create your training scripts with PyTorch-Ignite."
/>
<meta
name="keywords"
content="pytorch, pytorch-ignite, code-generator, deep learning, machine learning, ai, pytorch-ignite code-generator"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#ee4c2c" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@pytorch_ignite" />
<meta name="twitter:creator" content="@pytorch_ignite" />
<meta
name="twitter:description"
content="The easiest way to create your training scripts with PyTorch-Ignite."
/>
<meta name="twitter:title" value="Code-Generator" />
<meta
name="twitter:image"
content="https://code-generator.netlify.app/og-image.png"
/>
<meta name="twitter:image:alt" content="Code-Generator Preview" />
<meta property="og:title" content="Code-Generator" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://code-generator.netlify.app" />
<meta property="og:site_name" content="Code-Generator" />
<meta
property="og:image"
content="https://code-generator.netlify.app/og-image.png"
/>
<meta property="og:image:alt" content="Code-Generator Preview" />
<meta
property="og:description"
content="The easiest way to create your training scripts with PyTorch-Ignite."
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<title>Code Generator</title>
</head>
<body>
<div id="app"></div>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-F0YEX7QRZW"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-F0YEX7QRZW')
</script>
<script type="module" src="/src/main.js"></script>
</body>
</html>