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 meta descriptions #9399

Merged
merged 15 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions source/content/certification/study-guide-cms/00-intro.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: WebOps Certification
subtitle: Study Guide Introduction
description: Learn about the three failure modes of website operations.
certificationpage: true
type: certificationpage
layout: certificationpage
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: WebOps Certification
subtitle: "Chapter 1: WebOps"
description: Learn about the principles and benefits of WebOps.
certificationpage: true
showtoc: true
type: certificationpage
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: WebOps Certification
subtitle: "Chapter 2: Pantheon Platform"
description: Understand the layers of Pantheon's platform and how it can be used to solve problems using WebOps best practicies.
certificationpage: true
showtoc: true
type: certificationpage
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: WebOps Certification
subtitle: "Chapter 3: Site Creation"
description: Understand and practice site creation on Pantheon.
rachelwhitton marked this conversation as resolved.
Show resolved Hide resolved
certificationpage: true
showtoc: true
type: certificationpage
Expand Down
1 change: 1 addition & 0 deletions source/content/certification/study-guide-cms/04-cdn.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: WebOps Certification
subtitle: "Chapter 4: Content Delivery Network"
description: Learn about Pantheon's edge layer and how it can be customized for tailored usage.
rachelwhitton marked this conversation as resolved.
Show resolved Hide resolved
certificationpage: true
type: certificationpage
layout: certificationpage
Expand Down
1 change: 1 addition & 0 deletions source/content/certification/study-guide-cms/05-cms.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: WebOps Certification
subtitle: "Chapter 5: CMS Infrastructure"
description: Understand the ways containerized technology benefits WebOps.
rachelwhitton marked this conversation as resolved.
Show resolved Hide resolved
certificationpage: true
type: certificationpage
layout: certificationpage
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: WebOps Certification
subtitle: "Chapter 6: The Deployment Pipeline"
description: Learn about the deployment pipeline for CMS Sites on Pantheon as it relates to Code, Files, and Databases.
rachelwhitton marked this conversation as resolved.
Show resolved Hide resolved
certificationpage: true
type: certificationpage
layout: certificationpage
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: WebOps Certification
subtitle: "Chapter 7: Connecting People"
description: Undertsand how to manage teams and learn the differences between sites, environments, and applications on Pantheon.
rachelwhitton marked this conversation as resolved.
Show resolved Hide resolved
certificationpage: true
type: certificationpage
layout: certificationpage
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: WebOps Certification
subtitle: "Chapter 8: Extend with CLI and Hooks"
description: "Understand how Terminus and Quicksilver can work together to help facilitate complex WebOps workflows"
rachelwhitton marked this conversation as resolved.
Show resolved Hide resolved
certificationpage: true
type: certificationpage
layout: certificationpage
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: WebOps Certification
subtitle: "Chapter 9: Additional Automation"
description: "Learn how to leverage build steps on Pantheon to run Integrated Composer workflows."
rachelwhitton marked this conversation as resolved.
Show resolved Hide resolved
certificationpage: true
type: certificationpage
layout: certificationpage
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: WebOps Certification
subtitle: "Chapter 10: Custom Upstreams"
description: "Understand the relationship between Pantheon’s Core Upstreams, Custom Upstreams, and Individual Site Repositories."
rachelwhitton marked this conversation as resolved.
Show resolved Hide resolved
certificationpage: true
type: certificationpage
layout: certificationpage
Expand Down
4 changes: 3 additions & 1 deletion src/templates/certificationpage.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ class CertificationTemplate extends React.Component {
<SEO
slot="seo"
title={node.frontmatter.subtitle + ' | ' + node.frontmatter.title}
description={node.frontmatter.description || node.excerpt}
description={
node.frontmatter.description || node.frontmatter.subtitle
}
authors={node.frontmatter.contributors}
image={'/images/default-thumb-cert.png'}
reviewed={ifCommandsISO}
Expand Down
2 changes: 1 addition & 1 deletion src/templates/releaseNotePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class ReleaseNoteTemplate extends React.Component {
<Layout containerWidth={containerWidth} excludeSearch footerBorder>
<SEO
title={node.frontmatter.title}
description={node.frontmatter.description || node.excerpt}
description="A summary of changes to the Pantheon Platform"
rachelwhitton marked this conversation as resolved.
Show resolved Hide resolved
authors={node.frontmatter.contributors}
image={'/images/default-thumb-changelog.png'}
/>
Expand Down