diff options
author | 2021-08-11 15:04:09 -0700 | |
---|---|---|
committer | 2021-08-11 15:04:09 -0700 | |
commit | 0f0cc2b9d83ffeee125b85c95d2d51080f21074d (patch) | |
tree | 4960e84e8654108e9c88f8392e1b04a2ce5ab667 /docs/src/config.ts | |
parent | b54c01bf66a75bea7cde909418cc5373e666b7fa (diff) | |
download | astro-0f0cc2b9d83ffeee125b85c95d2d51080f21074d.tar.gz astro-0f0cc2b9d83ffeee125b85c95d2d51080f21074d.tar.zst astro-0f0cc2b9d83ffeee125b85c95d2d51080f21074d.zip |
Add file-based routing /w dynamic paths (#1010)
* wip: add file-based routing
* add pagination tests and nested pagination support
Diffstat (limited to 'docs/src/config.ts')
-rw-r--r-- | docs/src/config.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/src/config.ts b/docs/src/config.ts index 3dea10f6c..01f30955a 100644 --- a/docs/src/config.ts +++ b/docs/src/config.ts @@ -12,13 +12,15 @@ export const SIDEBAR = { { text: 'Components', link: 'core-concepts/astro-components' }, { text: 'Pages', link: 'core-concepts/astro-pages' }, { text: 'Layouts', link: 'core-concepts/layouts' }, - { text: 'Collections', link: 'core-concepts/collections' }, + { text: 'Routing', link: 'core-concepts/routing' }, { text: 'Partial Hydration', link: 'core-concepts/component-hydration' }, { text: 'Guides', header: true }, { text: 'Styling & CSS', link: 'guides/styling' }, - { text: 'Data Fetching', link: 'guides/data-fetching' }, { text: 'Markdown', link: 'guides/markdown-content' }, + { text: 'Data Fetching', link: 'guides/data-fetching' }, + { text: 'Pagination', link: 'guides/pagination' }, + { text: 'RSS', link: 'guides/rss' }, { text: 'Supported Imports', link: 'guides/imports' }, { text: 'Aliases', link: 'guides/aliases' }, { text: 'Deploy a Website', link: 'guides/deploy' }, |