From 34ad6598eefdb023ebd94120380368cf8b00cfa9 Mon Sep 17 00:00:00 2001 From: Risan Bagja Pradana Date: Thu, 30 Sep 2021 01:08:40 +0700 Subject: [PATCH] Fix URL to "starter templates" link (#1455) The `starter templates` link on [Installation](https://docs.astro.build/installation#create-astro) page is currently pointed at 404 page: https://docs.astro.build/examples. This fix, simply replace the URL with: https://github.com/snowpackjs/astro/tree/main/examples --- docs/src/pages/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/installation.md b/docs/src/pages/installation.md index ebef3d695..3d97a7e88 100644 --- a/docs/src/pages/installation.md +++ b/docs/src/pages/installation.md @@ -25,7 +25,7 @@ npm init astro yarn create astro ``` -[`create-astro`](https://github.com/snowpackjs/astro/tree/main/packages/create-astro) wizard lets you choose from a set of [starter templates](/examples) or alternatively, you could import your own Astro project directly from GitHub. +[`create-astro`](https://github.com/snowpackjs/astro/tree/main/packages/create-astro) wizard lets you choose from a set of [starter templates](https://github.com/snowpackjs/astro/tree/main/examples) or alternatively, you could import your own Astro project directly from GitHub. ```bash # Note: Replace "my-astro-project" with the name of your project.