8000 Add additional metadata for Facebook and Twitter by noahingh · Pull Request #25 · gitploy-io/gitploy-io.github.io · GitHub
[go: up one dir, main page]

Skip to content

Add additional metadata for Facebook and Twitter #25

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

Merged
merged 2 commits into from
Feb 19, 2022
Merged
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
17 changes: 14 additions & 3 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
const config = {
title: 'Gitploy',
tagline: 'Builds your deployment system around GitHub.',
url: 'https://www.gitploy.io/',
url: 'https://www.gitploy.io',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
Expand Down Expand Up @@ -60,8 +60,19 @@ const config = {
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
metadata: [
{name: 'og:image', content: '/img/logo.svg'},
{name: 'keywords', content: 'github, github deployment api, github environment, deploy, continuous deployment, continuous delivery, cicd'}
// General
{name: 'description', content: 'Build the deployment system around GitHub.'},
{name: 'keywords', content: 'github, github deployment api, github environment, deploy, continuous deployment, continuous delivery, cicd'},
// Facebook
{property: 'og:type', content: 'website'},
{property: 'og:description', content: 'Build the deployment system around GitHub.'},
{property: 'og:image', content: 'https://www.gitploy.io/img/logo_400.png'},
// Twitter
{property: 'twitter:domain', content: 'gitploy.io'},
{property: 'twitter:url', content: 'https://www.gitploy.io/'},
{name: 'twitter:title', content: 'Gitploy'},
{name: 'twitter:description', content: 'Build the deployment system around GitHub.'},
{name: 'twitter:image', content: 'https://www.gitploy.io/img/logo_400.png'},
],
navbar: {
title: 'Gitploy',
Expand Down
0