-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (52 loc) · 2.97 KB
/
index.html
File metadata and controls
57 lines (52 loc) · 2.97 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
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme-color" content="#f5fdff">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="%PUBLIC_URL%/images/cloudcv_logo.png"/>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<title>CloudCV</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<!-- Primary Meta Tags -->
<meta name="title" content="CloudCV">
<meta name="description" content="CloudCV is a young open source cloud platform started in 2013 by students and faculty from Machine Learning and Perception Lab at Virginia Tech (now at Georgia Tech) with the aim to make AI research more reproducible.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://cloudcv.org">
<meta property="og:title" content="CloudCV">
<meta property="og:description" content="CloudCV is a young open source cloud platform started in 2013 by students and faculty from Machine Learning and Perception Lab at Virginia Tech (now at Georgia Tech) with the aim to make AI research more reproducible.">
<meta property="og:image" content="%PUBLIC_URL%/images/cloudcv_logo.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://cloudcv.org">
<meta property="twitter:title" content="CloudCV">
<meta property="twitter:description" content="CloudCV is a young open source cloud platform started in 2013 by students and faculty from Machine Learning and Perception Lab at Virginia Tech (now at Georgia Tech) with the aim to make AI research more reproducible.">
<meta property="twitter:image" content="%PUBLIC_URL%/images/cloudcv_logo.png">
<!-- Schema.org -->
<script data-rh="true" type="application/ld+json">
{
"@context": "https:\\schema.org",
"@type": "Organization",
"url": "https://cloudcv.org",
"name": "CloudCV",
"description": "CloudCV is a young open source cloud platform started in 2013 by students and faculty from Machine Learning and Perception Lab at Virginia Tech (now at Georgia Tech) with the aim to make AI research more reproducible.",
"logo": {
"@type": "ImageObject",
"url": "%PUBLIC_URL%/images/cloudcv_logo.png",
"width": 840,
"height": 666
},
"sameAs" : [
"https://twitter.com/eval_ai",
]
}
</script>
</head>
<body>
<div id="app"></div>
<script src="/bundle.js"></script>
</body>
</html>