Skip to content

Commit f8743c0

Browse files
many small SEO tweaks, and added the displayTitle param to docs pages with accompanying updates to layouts
1 parent f65000a commit f8743c0

File tree

8 files changed

+25
-18
lines changed

8 files changed

+25
-18
lines changed

site/content/docs/CICD/vercel.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
title: Vercel
2+
title: How to Integrate Vercel with Checkly? Step-by-Step Guide
3+
displayTitle: Vercel
34
description: >-
45
Integrate Checkly with Vercel for app development and deployment to benefit from automated browser checks and production deployment testing.
5-
metatags:
6-
title: How to Integrate Vercel with Checkly? Step-by-Step Guide
76
weight: 7
87
menu:
98
integrations:

site/content/docs/integrations/opsgenie.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
title: Opsgenie
2+
title: Opsgenie Integration with Checkly | How to Get Started
3+
displayTitle: Opsgenie
34
description: >-
45
Learn how to integrate Checkly with Opsgenie and deliver failure, degradation, and recovery events to any Opsgenie team. Check our guide!
5-
metatags:
6-
title: Opsgenie Integration with Checkly | How to Get Started
76
weight: 57
87
menu:
98
integrations:

site/content/docs/integrations/pagerduty.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: PagerDuty
2+
title: Checkly Integration with PagerDuty - Trigger & Resolve Alerts
3+
displayTitle: PagerDuty
34
description: Learn how Checkly integrates seamlessly with PagerDuty, delivering real-time failure and recovery alerts to your PagerDuty account.
45
metatags:
56
title: Checkly Integration with PagerDuty - Trigger & Resolve Alerts

site/content/docs/integrations/telegram.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
2-
title: Telegram
3-
metatags:
4-
title: Checkly Integration with Telegram - Enable Alert Channels
2+
title: Checkly Integration with Telegram - Enable Alert Channels
3+
displayTitle: Telegram
54
description: Find out how Checkly integrates with Telegram to send failure, degradation, and recovery messages to any chat.
65
weight: 58
76
menu:

site/content/guides/end-to-end-monitoring.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
title: End to end monitoring
2+
title: What is End to End Monitoring? Overview with Examples
3+
displayTitle: End to end monitoring
34
description: >-
45
Learn end-to-end monitoring with puppeteer and playwright to test key website flows. Follow our guide that gets you up and running in 10 minutes.
5-
metatags:
6-
title: What is End to End Monitoring? Overview with Examples
76
author: Giovanni Rago
87
avatar: 'images/avatars/giovanni-rago.png'
98
---

site/content/learn/headless/basics-puppeteer-intro.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
Title: What is Puppeteer?
2+
Title: What is Puppeteer? Definition & Main Use Cases
3+
displayTitle: What is Puppeteer?
34
description: >-
45
Puppeteer is a Node library for controlling Chrome or Chromium via the DevTools Protocol, with headless and full-browser modes. Learn more in our guide!
5-
metatags:
6-
title: What is Puppeteer? Definition & Main Use Cases
76
Date: 2020-06-19
87
Author: "Giovanni Rago"
98

site/layouts/docs/list.html

+6-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ <h1 id="{{ anchorize .Title }}">{{ .Title }}</h1>
2626

2727
{{ range first 1 .Pages }}
2828
<div class="text-right my-5">
29-
<a href="{{ .RelPermalink }}">{{ .Title }}
29+
<a href="{{ .RelPermalink }}">
30+
{{ if .Params.displayTitle}}
31+
{{.Params.displayTitle}}
32+
{{else}}
33+
{{.Title}}
34+
{{end}}
3035
<svg class="ml-2" width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg">
3136
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.21967 0.969668C5.51256 0.676777 5.98744 0.676777 6.28033 0.969668L10.5303 5.21967C10.8232 5.51256 10.8232 5.98744 10.5303 6.28033L6.28033 10.5303C5.98744 10.8232 5.51256 10.8232 5.21967 10.5303C4.92678 10.2374 4.92678 9.7626 5.21967 9.4697L8.1893 6.5H0.75C0.33579 6.5 0 6.16421 0 5.75C0 5.33579 0.33579 5 0.75 5H8.1893L5.21967 2.03033C4.92678 1.73744 4.92678 1.26256 5.21967 0.969668Z" fill="#0075ff"/>
3237
</svg>

site/layouts/docs/single.html

+7-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@
1111

1212
{{ partial "docs-breadcrumb" .}}
1313

14-
<h1 id="{{ anchorize .Title }}">{{ .Title }}</h1>
14+
<h1 id="{{ anchorize .Title }}">
15+
{{ if .Params.displayTitle}}
16+
{{.Params.displayTitle}}
17+
{{else}}
18+
{{.Title}}
19+
{{end}}
20+
</h1>
1521
<div class="docs-toc-mobile mb-5 pt-3">
1622
<div class="docs-toc-header mb-3 pt-3">On this page</div>
1723
{{ .Page.TableOfContents }}

0 commit comments

Comments
 (0)