diff --git a/.cspell/words-that-should-exist.txt b/.cspell/words-that-should-exist.txt index 8dbfeeda5..d3a328aea 100644 --- a/.cspell/words-that-should-exist.txt +++ b/.cspell/words-that-should-exist.txt @@ -9,6 +9,8 @@ counterparty counterparty's filesystem filesystems +howto +howtos interoperating permissioned permissivity diff --git a/netlify.toml b/netlify.toml index b4c22ec85..0dbedb97e 100644 --- a/netlify.toml +++ b/netlify.toml @@ -40,7 +40,7 @@ from = "/resources/happ-bundle/" to = "/redirect-to-redux-site.html#!docs/resources/happ-bundle/" # There will eventually be a new hApp bundle format that will get documented, - # and I intend to put it under `/references`. + # and I intend to put it under `/resources`. status = 302 # Some of the core concepts' titles and URLs have changed, @@ -71,6 +71,11 @@ to = "/concepts/8_calls_capabilities/" status = 301 +[[redirects]] + from = "/references/*" + to = "/resources/:splat" + status = 301 + # Once upon a time, we had a landing page and all the actual docs were in /docs. [[redirects]] from = "/docs/*" @@ -101,10 +106,10 @@ to = "/get-started/" status = 301 -# Glossary has been moved to the references path. +# Glossary has been moved to the resources path. [[redirects]] from = "/glossary/" - to = "/references/glossary/" + to = "/resources/glossary/" status = 301 # The front page for the core concepts has been removed. diff --git a/src/pages/_data/navigation/footerLinks.json5 b/src/pages/_data/navigation/footerLinks.json5 index 681ccded4..055b4e7cf 100644 --- a/src/pages/_data/navigation/footerLinks.json5 +++ b/src/pages/_data/navigation/footerLinks.json5 @@ -5,7 +5,7 @@ links: [ { title: "Get Started", url: "/get-started/" }, { title: "Core Concepts", url: "/concepts/1_the_basics/" }, - { title: "Resources", url: "/references/" }, + { title: "Resources", url: "/resources/" }, ] }, @@ -16,7 +16,7 @@ { title: "App API reference", url: "https://docs.rs/holochain_conductor_api/latest/holochain_conductor_api/enum.AppRequest.html", external: true }, { title: "Admin API reference", url: "https://docs.rs/holochain_conductor_api/latest/holochain_conductor_api/enum.AdminRequest.html", external: true }, { title: "CLI", url: "https://github.com/holochain/holochain/tree/main/crates/hc", external: true }, - { title: "Glossary", url: "/references/glossary/", external: true }, + { title: "Glossary", url: "/resources/glossary/", external: true }, ] }, diff --git a/src/pages/_data/navigation/headerNav.json5 b/src/pages/_data/navigation/headerNav.json5 index 2e4e1f5d2..13617a54b 100644 --- a/src/pages/_data/navigation/headerNav.json5 +++ b/src/pages/_data/navigation/headerNav.json5 @@ -2,7 +2,7 @@ links: [ { title: "Get Started", url: "/get-started/", class:"" }, { title: "Core Concepts", url: "/concepts/1_the_basics/", class:"" }, - { title: "Resources", url: "/references/", class:"" }, + { title: "Resources", url: "/resources/", class:"" }, { title: "Get Involved", url: "/get-involved/", class:"" }, ] } \ No newline at end of file diff --git a/src/pages/_data/navigation/mainNav.json5 b/src/pages/_data/navigation/mainNav.json5 index 7ef32bc89..2d9c5975a 100644 --- a/src/pages/_data/navigation/mainNav.json5 +++ b/src/pages/_data/navigation/mainNav.json5 @@ -21,12 +21,12 @@ { title: "Lifecycle Events", url: "/concepts/11_lifecycle_events/" }, ] }, - { title: "References", url: "/references/", children: [ + { title: "References", url: "/resources/", children: [ { title: "HDK (Rust)", url: "https://docs.rs/hdk", external: true }, { title: "App API reference", url: "https://docs.rs/holochain_conductor_api/latest/holochain_conductor_api/enum.AppRequest.html", external: true }, { title: "Admin API reference", url: "https://docs.rs/holochain_conductor_api/latest/holochain_conductor_api/enum.AdminRequest.html", external: true }, { title: "CLI", url: "https://github.com/holochain/holochain/tree/main/crates/hc", external: true }, - { title: "Glossary", url: "/references/glossary/" }, + { title: "Glossary", url: "/resources/glossary/" }, ] }, { title: "Get Involved", url: "/get-involved/" }, diff --git a/src/pages/_includes/widgets/home-tiles.njk b/src/pages/_includes/widgets/home-tiles.njk index ecba4302d..751a25e0e 100644 --- a/src/pages/_includes/widgets/home-tiles.njk +++ b/src/pages/_includes/widgets/home-tiles.njk @@ -16,11 +16,11 @@ {% endlinkTile %} - {% linkTile "/references/", "home-tile" %} + {% linkTile "/resources/", "home-tile" %} {{ toolPanelIcon() }}
-

Resources & Docs

-

Advanced tips and more

+

Resources

+

Howtos, references, examples, and more

{% endlinkTile %} diff --git a/src/pages/references/glossary.md b/src/pages/resources/glossary.md similarity index 100% rename from src/pages/references/glossary.md rename to src/pages/resources/glossary.md diff --git a/src/pages/references/index.md b/src/pages/resources/index.md similarity index 100% rename from src/pages/references/index.md rename to src/pages/resources/index.md