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: add meta tags for facebook and twitter #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
13 changes: 13 additions & 0 deletions frontend/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<title>CloudCV</title>
<meta name="description" content="Page description. No longer than 155 characters." />
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:title" content="A concise title for the related content. [Maximum 70 characters.]">
<meta name="twitter:description" content="A description that concisely summarizes the content as appropriate for presentation within a Tweet. You should not re-use the title as the description or use this field to describe the general services provided by the website. [Maximum 200 characters.]">
<meta name="twitter:image" content="http://www.example.com/image.jpg/ A URL to a unique image representing the content of the page. You should not use a generic image such as your website logo, author photo, or other image that spans multiple pages. Images for this Card should be at least 280px in width, and at least 150px in height. Image must be less than 1MB in size.">
<!-- Open Graph data -->
<meta property="og:title" content="The title, headline or name of the object." />
<meta property="og:url" content="The canonical URL for your page. This should be the undecorated URL, without session variables, user identifying parameters, or counters." />
<meta property="og:image" content="http://example.com/image.jpg/ The URL of the image for your object. It should be at least 600x315 pixels, but 1200x630 or larger is preferred (up to 5MB). Stay close to a 1.91:1 aspect ratio to avoid cropping." />
<meta property="og:description" content="A short description or summary of the object. [Between 2 and 4 sentences.]" />
<meta property="og:site_name" content="Site Name, i.e. Moz" />
</head>
<body>
<div id="app"></div>
Expand Down