Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX #75 : added META tags - for better SEO #165

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added frontend/public/images/cloudcv_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 42 additions & 1 deletion frontend/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,50 @@
<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="images/cloudcv_logo.png"/>
<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/[email protected]/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>
Expand Down