Skip to content

Commit

Permalink
Add og:title, adjust <title>
Browse files Browse the repository at this point in the history
…following what we do for starter detail pages (e.g. `/starters/gatsbyjs/gatsby-starter-blog/`)
  • Loading branch information
fk committed Jun 10, 2019
1 parent 539f039 commit 40236e0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion www/src/components/showcase-details.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ const ShowcaseDetails = ({ parent, data, isModal, categories }) => (
}}
>
<Helmet>
<title>{data.sitesYaml.title}</title>
<title>{data.sitesYaml.title}: Showcase | GatsbyJS</title>
<meta
property="og:image"
content={`https://www.gatsbyjs.org${
Expand All @@ -267,6 +267,10 @@ const ShowcaseDetails = ({ parent, data, isModal, categories }) => (
}`}
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="og:title"
value={`${data.sitesYaml.title}: Showcase | GatsbyJS`}
/>
<meta
property="og:image:width"
content={
Expand Down

0 comments on commit 40236e0

Please sign in to comment.