From 1080caf96975a1dd4fcf1121a4ae1c9c887187ea Mon Sep 17 00:00:00 2001 From: C T <215163593+catplat@users.noreply.github.com> Date: Thu, 23 Oct 2025 09:28:33 -0400 Subject: [PATCH 1/5] Update Fixed text; remove unnecessary comma for both products --- sites/platform/config/_default/params.yaml | 4 ++-- sites/upsun/config/_default/params.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sites/platform/config/_default/params.yaml b/sites/platform/config/_default/params.yaml index 920b9576d6..aaad4b6dad 100644 --- a/sites/platform/config/_default/params.yaml +++ b/sites/platform/config/_default/params.yaml @@ -25,8 +25,8 @@ vendor: link: https://upsun.com/register/ cta: Activate your 15-day trial title: Try Upsun for 15 days - description: "After that, enjoy the same, game-changing Upsun features for less with the First Project Incentive!¹ A monthly $19 perk!" - fine: "¹Terms and conditions apply" + description: "After that, enjoy the same game-changing Upsun features for less with the First Project Incentive!¹ A monthly $19 perk!" + fine: "¹Terms and conditions apply. Only for Flexible Resource projects." config: version: 1 dir: .platform diff --git a/sites/upsun/config/_default/params.yaml b/sites/upsun/config/_default/params.yaml index 2090ca1ed7..015101e199 100644 --- a/sites/upsun/config/_default/params.yaml +++ b/sites/upsun/config/_default/params.yaml @@ -25,7 +25,7 @@ vendor: link: https://upsun.com/register/ cta: Activate your 15-day trial title: Try Upsun for 15 days - description: "After that, enjoy the same, game-changing Upsun features for less with the First Project Incentive!¹ A monthly $19 perk!" + description: "After that, enjoy the same game-changing Upsun features for less with the First Project Incentive!¹ A monthly $19 perk!" fine: "¹Terms and conditions apply" psh_ref: Upsun Fixed config: From 168b907cc3309168a6b4630ea2f0bcb33565e013 Mon Sep 17 00:00:00 2001 From: Paul Gilzow Date: Fri, 24 Oct 2025 16:22:11 -0500 Subject: [PATCH 2/5] adds link in CTA description --- sites/upsun/config/_default/params.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/upsun/config/_default/params.yaml b/sites/upsun/config/_default/params.yaml index 015101e199..134efd26c3 100644 --- a/sites/upsun/config/_default/params.yaml +++ b/sites/upsun/config/_default/params.yaml @@ -25,7 +25,7 @@ vendor: link: https://upsun.com/register/ cta: Activate your 15-day trial title: Try Upsun for 15 days - description: "After that, enjoy the same game-changing Upsun features for less with the First Project Incentive!¹ A monthly $19 perk!" + description: "After that, enjoy the same game-changing Upsun features for less with the [First Project Incentive](https://upsun.com/blog/first-project-incentive/)!¹ A monthly $19 perk!" fine: "¹Terms and conditions apply" psh_ref: Upsun Fixed config: From 02bd7ed367adf652298ab3dedcfcd4f5aeab3edf Mon Sep 17 00:00:00 2001 From: Paul Gilzow Date: Fri, 24 Oct 2025 16:30:02 -0500 Subject: [PATCH 3/5] adds markdownify so we can have our link in the CTA --- themes/psh-docs/layouts/partials/page-content.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/psh-docs/layouts/partials/page-content.html b/themes/psh-docs/layouts/partials/page-content.html index 0aa299f861..00ac4085e4 100644 --- a/themes/psh-docs/layouts/partials/page-content.html +++ b/themes/psh-docs/layouts/partials/page-content.html @@ -81,7 +81,7 @@

On this page

{{ end }}
- {{ index $recruitment "description"}} + {{ index $recruitment "description" | markdownify }}
From c16ff7eccf7322efaf0277c0ff3b911429d5ca77 Mon Sep 17 00:00:00 2001 From: C T <215163593+catplat@users.noreply.github.com> Date: Mon, 27 Oct 2025 10:20:49 -0400 Subject: [PATCH 4/5] Link highlighting --- themes/psh-docs/assets/css/vendor.css | 15 +++++++++++++++ .../psh-docs/layouts/partials/page-content.html | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/themes/psh-docs/assets/css/vendor.css b/themes/psh-docs/assets/css/vendor.css index 1dba083c49..84914899aa 100644 --- a/themes/psh-docs/assets/css/vendor.css +++ b/themes/psh-docs/assets/css/vendor.css @@ -152,4 +152,19 @@ summary { font-weight: 500; font-size: 0.85rem; line-height: 1.2rem; +} + +.cta-body a { + color: #6046FF; + font-weight: 600; /* Slightly bolder to emphasize */ + text-decoration: underline; /* Underlined to indicate it's a link */ +} + +.cta-body a:visited { + color: #4D38CC; /* Slightly darker after visit */ +} + +.cta-body a:hover, +.cta-body a:focus { + color: #8877f1 /* Lighter shade on hover/focus */ } \ No newline at end of file diff --git a/themes/psh-docs/layouts/partials/page-content.html b/themes/psh-docs/layouts/partials/page-content.html index 00ac4085e4..8334eaf215 100644 --- a/themes/psh-docs/layouts/partials/page-content.html +++ b/themes/psh-docs/layouts/partials/page-content.html @@ -80,7 +80,7 @@

On this page

{{ end }}
-
+
{{ index $recruitment "description" | markdownify }}
From 4b645b0070388aa4c6c63985eac3a05c120ff0c3 Mon Sep 17 00:00:00 2001 From: C T <215163593+catplat@users.noreply.github.com> Date: Mon, 27 Oct 2025 12:55:32 -0400 Subject: [PATCH 5/5] Add link to platform docs --- sites/platform/config/_default/params.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/platform/config/_default/params.yaml b/sites/platform/config/_default/params.yaml index aaad4b6dad..760aeeda93 100644 --- a/sites/platform/config/_default/params.yaml +++ b/sites/platform/config/_default/params.yaml @@ -25,7 +25,7 @@ vendor: link: https://upsun.com/register/ cta: Activate your 15-day trial title: Try Upsun for 15 days - description: "After that, enjoy the same game-changing Upsun features for less with the First Project Incentive!¹ A monthly $19 perk!" + description: "After that, enjoy the same game-changing Upsun features for less with the [First Project Incentive](https://upsun.com/blog/first-project-incentive/)!¹ A monthly $19 perk!" fine: "¹Terms and conditions apply. Only for Flexible Resource projects." config: version: 1