-
Notifications
You must be signed in to change notification settings - Fork 977
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Making breadcrumbs clickable (#3515)
## What are you changing in this pull request and why? Making the breadcrumb trail items in the docs pages clickable. Many of them are now, but the categories that don't have links are static and unable to be used for navigation. Based on customer feedback, our readers would like to be able to click on all items in the breadcrumb trail to make navigation through the pages easier. This will add links to the categories that don't have them by leveraging existing `About...` pages or creating new ones where required. To keep a consistent navigational experience, we will make the links available as pages in the menu as well. ## 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/guides/migration/versions) --> - [x] Review the [Content style guide](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/content-style-guide.md) and [About versioning](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/single-sourcing-content.md#adding-a-new-version) so my content adheres to these guidelines. - [x] 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` - [ ] [Ran link testing](https://github.com/dbt-labs/docs.getdbt.com#running-the-cypress-tests-locally) to update the links that point to the deleted page
- Loading branch information
Showing
81 changed files
with
451 additions
and
30 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
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
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
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
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
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
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,38 @@ | ||
--- | ||
title: "Enhance your code" | ||
description: "Learn how you can enhance your code" | ||
pagination_next: "docs/build/project-variables" | ||
pagination_prev: null | ||
--- | ||
|
||
<div className="grid--2-col"> | ||
|
||
<Card | ||
title="Project variables" | ||
body="Learn how to use project variables to provide data to models for compilation." | ||
link="/docs/build/project-variables" | ||
icon="dbt-bit"/> | ||
|
||
<Card | ||
title="Environment variables" | ||
body="Learn how you can use environment variables to customize the behavior of a dbt project." | ||
link="/docs/build/environment-variables" | ||
icon="dbt-bit"/> | ||
|
||
</div> | ||
<br /> | ||
<div className="grid--2-col"> | ||
|
||
<Card | ||
title="Packages" | ||
body="Learn how you can leverage code reuse through packages (libraries)." | ||
link="/docs/build/packages" | ||
icon="dbt-bit"/> | ||
|
||
<Card | ||
title="Hooks and operations" | ||
body="Learn how to use hooks to trigger actions and operations to invoke macros." | ||
link="/docs/build/hooks-operations" | ||
icon="dbt-bit"/> | ||
|
||
</div> |
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,23 @@ | ||
--- | ||
title: "Enhance your models" | ||
description: "Learn how you can enhance your models" | ||
pagination_next: "docs/build/materializations" | ||
pagination_prev: null | ||
--- | ||
|
||
<div className="grid--2-col"> | ||
|
||
<Card | ||
title="Materializations" | ||
body="Learn how to use materializations to make dbt models persist in a data platform." | ||
link="/docs/build/materializations" | ||
icon="dbt-bit"/> | ||
|
||
<Card | ||
title="Incremental models" | ||
body="Learn how to use incremental models so you can limit the amount of data that needs to be transformed." | ||
link="/docs/build/incremental-models" | ||
icon="dbt-bit"/> | ||
|
||
</div> | ||
<br /> |
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
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
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
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,38 @@ | ||
--- | ||
title: "Organize your outputs" | ||
description: "Learn how you can organize your outputs" | ||
pagination_next: "docs/build/custom-schemas" | ||
pagination_prev: null | ||
--- | ||
|
||
<div className="grid--2-col"> | ||
|
||
<Card | ||
title="Custom schemas" | ||
body="Learn how to use the <code>schema</code> configuration key to specify a custom schema." | ||
link="/docs/build/custom-schemas" | ||
icon="dbt-bit"/> | ||
|
||
<Card | ||
title="Custom databases" | ||
body="Learn how to use the <code>database</code> configuration key to specify a custom database." | ||
link="/docs/build/custom-databases" | ||
icon="dbt-bit"/> | ||
|
||
</div> | ||
<br /> | ||
<div className="grid--2-col"> | ||
|
||
<Card | ||
title="Custom aliases" | ||
body="Learn how to use the <code>alias</code> model configuration to change the name of a model's identifier in the database." | ||
link="/docs/build/custom-aliases" | ||
icon="dbt-bit"/> | ||
|
||
<Card | ||
title="Custom target names" | ||
body="Learn how to define a custom target name for a dbt Cloud job." | ||
link="/docs/build/custom-target-names" | ||
icon="dbt-bit"/> | ||
|
||
</div> |
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
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
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
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
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
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
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
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
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
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
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,37 @@ | ||
--- | ||
title: "dbt Cloud IDE" | ||
description: "Learn how to configure Git in dbt Cloud" | ||
pagination_next: "docs/cloud/dbt-cloud-ide/develop-in-the-cloud" | ||
pagination_prev: null | ||
--- | ||
|
||
<div className="grid--2-col"> | ||
|
||
<Card | ||
title="Develop in the IDE" | ||
body="Learn about the different features in the IDE and how to develop your dbt projects with them." | ||
link="/docs/cloud/git/import-a-project-by-git-url" | ||
icon="dbt-bit"/> | ||
|
||
<Card | ||
title="IDE user interface" | ||
body="Learn how you can build, test, run, and version control dbt projects in the IDE." | ||
link="/docs/cloud/dbt-cloud-ide/develop-in-the-cloud" | ||
icon="dbt-bit"/> | ||
|
||
</div> | ||
<br /> | ||
<div className="grid--2-col"> | ||
<Card | ||
title="Lint and format your code" | ||
body="Learn about how to lint and format your code with SQLFluff, Prettier, and more. " | ||
link="/docs/cloud/dbt-cloud-ide/lint-format" | ||
icon="dbt-bit"/> | ||
|
||
<Card | ||
title="dbt Cloud tips" | ||
body="Learn about tips and tricks (like keyboard shortcuts) that you can use in dbt Cloud." | ||
link="/docs/cloud/dbt-cloud-ide/dbt-cloud-tips" | ||
icon="dbt-bit"/> | ||
|
||
</div> |
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
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
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
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
37 changes: 37 additions & 0 deletions
37
website/docs/docs/cloud/git/git-configuration-in-dbt-cloud.md
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,37 @@ | ||
--- | ||
title: "Git configuration in dbt Cloud" | ||
description: "Learn about the Git providers supported in dbt Cloud" | ||
pagination_next: "docs/cloud/git/import-a-project-by-git-url" | ||
pagination_prev: null | ||
--- | ||
|
||
<div className="grid--2-col"> | ||
|
||
<Card | ||
title="Import a project by git URL" | ||
body="Learn how to import a project by using a git URL." | ||
link="/docs/cloud/git/import-a-project-by-git-url" | ||
icon="dbt-bit"/> | ||
|
||
<Card | ||
title="Connect to GitHub" | ||
body="Learn how to connect to GitHub." | ||
link="/docs/cloud/git/connect-github" | ||
icon="dbt-bit"/> | ||
|
||
</div> | ||
<br /> | ||
<div className="grid--2-col"> | ||
<Card | ||
title="Connect to GitLab" | ||
body="Learn how to connect to GitLab." | ||
link="/docs/cloud/git/connect-gitlab" | ||
icon="dbt-bit"/> | ||
|
||
<Card | ||
title="Connect to Azure DevOps" | ||
body="Learn how to connect to Azure DevOps." | ||
link="/docs/cloud/git/connect-azure-devops" | ||
icon="dbt-bit"/> | ||
|
||
</div> |
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
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
Oops, something went wrong.