diff --git a/assets/fonts/alliance/alliance-no-1-bold.woff b/assets/fonts/alliance/alliance-no-1-bold.woff new file mode 100644 index 000000000000..77dd7ad71f83 Binary files /dev/null and b/assets/fonts/alliance/alliance-no-1-bold.woff differ diff --git a/assets/fonts/alliance/alliance-no-1-extrabold.woff b/assets/fonts/alliance/alliance-no-1-extrabold.woff new file mode 100644 index 000000000000..8eb36cd9c4db Binary files /dev/null and b/assets/fonts/alliance/alliance-no-1-extrabold.woff differ diff --git a/assets/fonts/alliance/alliance-no-1-medium.woff b/assets/fonts/alliance/alliance-no-1-medium.woff new file mode 100644 index 000000000000..afc2331f2139 Binary files /dev/null and b/assets/fonts/alliance/alliance-no-1-medium.woff differ diff --git a/assets/fonts/alliance/alliance-no-1-regular.woff b/assets/fonts/alliance/alliance-no-1-regular.woff new file mode 100644 index 000000000000..0b1e4c761fad Binary files /dev/null and b/assets/fonts/alliance/alliance-no-1-regular.woff differ diff --git a/content/actions/index.md b/content/actions/index.md index b8746ce72cbd..8df31146397c 100644 --- a/content/actions/index.md +++ b/content/actions/index.md @@ -2,12 +2,15 @@ title: GitHub Actions Documentation shortTitle: GitHub Actions intro: 'Automate, customize, and execute your software development workflows right in your repository with {% data variables.product.prodname_actions %}. You can discover, create, and share actions to perform any job you''d like, including CI/CD, and combine actions in a completely customized workflow.' +introLinks: + quickstart: /actions/quickstart + learn: /actions/learn-github-actions gettingStartedLinks: - - /actions/quickstart - - /actions/learn-github-actions -guideLinks: - /actions/managing-workflow-runs - /actions/hosting-your-own-runners +guideLinks: + - /actions/guides/setting-up-continuous-integration-using-workflow-templates + - /actions/guides/about-packaging-with-github-actions popularLinks: - /actions/reference/workflow-syntax-for-github-actions - /actions/reference/events-that-trigger-workflows @@ -36,10 +39,10 @@ versions:
@@ -61,40 +64,16 @@ versions:

Manage workflows

- -
-
- -
{% octicon "bookmark" width="24" %}
-

Create actions

-

A complete guide to creating and sharing actions with the community.

-
-
-
- -
{% octicon "rocket" width="24" %}
-

Starter workflows

-

A collection of workflow files to help you get started with GitHub Actions.

-
-
-
- -
{% octicon "light-bulb" width="24" %}
-

GitHub Actions Marketplace

-

Explore community actions and supercharge your workflow.

-
-
-
-

Guides

+

More guides

@@ -195,5 +174,5 @@ versions:
- More guides {% octicon "arrow-right" %} + Show all guides {% octicon "arrow-right" %}
diff --git a/layouts/product-landing.html b/layouts/product-landing.html index 5bd1189b1ab1..1393070555f2 100644 --- a/layouts/product-landing.html +++ b/layouts/product-landing.html @@ -12,15 +12,15 @@
Product -

{{ page.shortTitle }}

+

{{ page.shortTitle }}

{{ page.intro }}
- + Quickstart - - Learn more + + Learn {% data variables.product.prodname_actions %}
diff --git a/lib/frontmatter.js b/lib/frontmatter.js index 901ead735330..f3e79a5325ba 100644 --- a/lib/frontmatter.js +++ b/lib/frontmatter.js @@ -63,6 +63,13 @@ const schema = { }, allowTitleToDifferFromFilename: { type: 'boolean' + }, + introLinks: { + type: 'object', + properties: { + quickstart: { type: 'string' }, + learn: { type: 'string' } + } } } } diff --git a/stylesheets/new-mktg.scss b/stylesheets/new-mktg.scss index 8ee0a4356d23..637947b4c811 100644 --- a/stylesheets/new-mktg.scss +++ b/stylesheets/new-mktg.scss @@ -54,3 +54,48 @@ .bg-blue-dark { background-color: $blue-800 !important; } + +// stylelint-disable primer/no-unused-vars + +// Typography + +$marketing-font-path: "/assets/fonts/alliance/"; +$font-family-mktg: "Alliance No.1", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default; +$font-weight-extrabold: 800 !default; + +.font-mktg { + font-family: $font-family-mktg; +} + +// Type +@font-face { + font-family: "Alliance No.1"; + font-style: normal; + font-weight: $font-weight-normal; + src: local("Alliance No.1 Regular"), local("alliance-no-1-regular"), url("#{$marketing-font-path}alliance-no-1-regular.woff") format("woff"); + font-display: swap; +} + +@font-face { + font-family: "Alliance No.1"; + font-style: normal; + font-weight: $font-weight-semibold; + src: local("Alliance No.1 Medium"), local("alliance-no-1-medium"), url("#{$marketing-font-path}alliance-no-1-medium.woff") format("woff"); + font-display: swap; +} + +@font-face { + font-family: "Alliance No.1"; + font-style: normal; + font-weight: $font-weight-bold; + src: local("Alliance No.1 Bold"), local("alliance-no-1-bold"), url("#{$marketing-font-path}alliance-no-1-bold.woff") format("woff"); + font-display: swap; +} + +@font-face { + font-family: "Alliance No.1"; + font-style: normal; + font-weight: $font-weight-extrabold; + src: local("Alliance No.1 ExtraBold"), local("alliance-no-1-extrabold"), url("#{$marketing-font-path}alliance-no-1-extrabold.woff") format("woff"); + font-display: swap; +}