-
Notifications
You must be signed in to change notification settings - Fork 975
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding landing pages for autogenerated FAQ directories (#4560)
Closes #2748 ## What are you changing in this pull request and why? Adding a page that will hopefully add a landing page. This will ensure breadcrumbs work which helps with SEO and will help @kbrock91 be able to link to a section in the FAQs when necessary. ## Checklist <!-- Uncomment if you're publishing docs for a prerelease version of dbt (delete if not applicable): - [ ] Add versioning components, as described in [Versioning Docs](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/single-sourcing-content.md#versioning-entire-pages) - [ ] Add a note to the prerelease version [Migration Guide](https://github.com/dbt-labs/docs.getdbt.com/tree/current/website/docs/docs/dbt-versions/core-upgrade) --> - [ ] Review the [Content style guide](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/content-style-guide.md) so my content adheres to these guidelines. - [ ] For [docs versioning](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/single-sourcing-content.md#about-versioning), review how to [version a whole page](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/single-sourcing-content.md#adding-a-new-version) and [version a block of content](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/single-sourcing-content.md#versioning-blocks-of-content). - [ ] Add a checklist item for anything that needs to happen before this PR is merged, such as "needs technical review" or "change base branch." Adding new pages (delete if not applicable): - [ ] Add page to `website/sidebars.js` - [ ] Provide a unique filename for the new page Removing or renaming existing pages (delete if not applicable): - [ ] Remove page from `website/sidebars.js` - [ ] Add an entry `website/static/_redirects` - [ ] Run link testing locally with `npm run build` to update the links that point to the deleted page --------- Co-authored-by: Matt Shaver <[email protected]>
- Loading branch information
1 parent
f269168
commit 7fc3cbf
Showing
15 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'API' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: API FAQs | ||
customProps: | ||
description: Frequently asked questions about dbt APIs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Accounts' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: Account FAQs | ||
customProps: | ||
description: Frequently asked questions about your account in dbt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'dbt Core' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: 'dbt Core FAQs' | ||
customProps: | ||
description: Frequently asked questions about dbt Core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'dbt Docs' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: dbt Docs FAQs | ||
customProps: | ||
description: Frequently asked questions about dbt Docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Environments' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: 'Environments FAQs' | ||
customProps: | ||
description: Frequently asked questions about Environments in dbt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Git' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: Git FAQs | ||
customProps: | ||
description: Frequently asked questions about Git and dbt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Jinja' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: Jinja FAQs | ||
customProps: | ||
description: Frequently asked questions about Jinja and dbt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Models' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: Models FAQs | ||
customProps: | ||
description: Frequently asked questions about Models in dbt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Projects' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: Project FAQs | ||
customProps: | ||
description: Frequently asked questions about projects in dbt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Runs' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: Runs FAQs | ||
customProps: | ||
description: Frequently asked questions about runs in dbt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Seeds' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: Seeds FAQs | ||
customProps: | ||
description: Frequently asked questions about seeds in dbt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Snapshots' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: Snapshots FAQs | ||
customProps: | ||
description: Frequently asked questions about snapshots in dbt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Tests' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: Tests FAQs | ||
customProps: | ||
description: Frequently asked questions about tests in dbt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Troubleshooting' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: Troubleshooting FAQs | ||
customProps: | ||
description: Frequently asked questions about troubleshooting dbt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# position: 2.5 # float position is supported | ||
label: 'Warehouse' | ||
collapsible: true # make the category collapsible | ||
collapsed: true # keep the category collapsed by default | ||
className: red | ||
link: | ||
type: generated-index | ||
title: Warehouse FAQs | ||
customProps: | ||
description: Frequently asked questions about warehouses and dbt |