diff options
author | 2021-08-11 15:04:09 -0700 | |
---|---|---|
committer | 2021-08-11 15:04:09 -0700 | |
commit | 0f0cc2b9d83ffeee125b85c95d2d51080f21074d (patch) | |
tree | 4960e84e8654108e9c88f8392e1b04a2ce5ab667 /examples/blog-multiple-authors/src/components/Nav.astro | |
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 'examples/blog-multiple-authors/src/components/Nav.astro')
-rw-r--r-- | examples/blog-multiple-authors/src/components/Nav.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/blog-multiple-authors/src/components/Nav.astro b/examples/blog-multiple-authors/src/components/Nav.astro index a7ef0985f..04a537f87 100644 --- a/examples/blog-multiple-authors/src/components/Nav.astro +++ b/examples/blog-multiple-authors/src/components/Nav.astro @@ -56,8 +56,8 @@ a { <ul class="nav"> <li><a href="/">Home</a></li> <li><a href="/posts">All Posts</a></li> - <li><a href="/author/don">Author: Don</a></li> - <li><a href="/author/sancho">Author: Sancho</a></li> + <li><a href="/authors/don">Author: Don</a></li> + <li><a href="/authors/sancho">Author: Sancho</a></li> <li><a href="/about">About</a></li> </ul> </nav> |