diff options
Diffstat (limited to 'packages/create-astro')
5 files changed, 5 insertions, 5 deletions
diff --git a/packages/create-astro/src/templates/blank/README.md b/packages/create-astro/src/templates/blank/README.md index 40c5841c9..a4a181285 100644 --- a/packages/create-astro/src/templates/blank/README.md +++ b/packages/create-astro/src/templates/blank/README.md @@ -15,7 +15,7 @@ Inside of your Astro project, you'll see the following folders and files: └── package.json ``` -Astro looks for `.astro` or `.md.astro` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. +Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. Any static assets, like images, can be placed in the `public/` directory. diff --git a/packages/create-astro/src/templates/blank/package.json b/packages/create-astro/src/templates/blank/package.json index 478970d63..1bd3b3db0 100644 --- a/packages/create-astro/src/templates/blank/package.json +++ b/packages/create-astro/src/templates/blank/package.json @@ -6,6 +6,6 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.0.12" + "astro": "^0.0.13" } } diff --git a/packages/create-astro/src/templates/starter/README.md b/packages/create-astro/src/templates/starter/README.md index 70ff237f6..98626dee7 100644 --- a/packages/create-astro/src/templates/starter/README.md +++ b/packages/create-astro/src/templates/starter/README.md @@ -19,7 +19,7 @@ Inside of your Astro project, you'll see the following folders and files: └── package.json ``` -Astro looks for `.astro` or `.md.astro` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. +Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. diff --git a/packages/create-astro/src/templates/starter/package.json b/packages/create-astro/src/templates/starter/package.json index 478970d63..1bd3b3db0 100644 --- a/packages/create-astro/src/templates/starter/package.json +++ b/packages/create-astro/src/templates/starter/package.json @@ -6,6 +6,6 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.0.12" + "astro": "^0.0.13" } } diff --git a/packages/create-astro/src/templates/starter/src/components/Tour.astro b/packages/create-astro/src/templates/starter/src/components/Tour.astro index ca0cfafbf..7452ddfb9 100644 --- a/packages/create-astro/src/templates/starter/src/components/Tour.astro +++ b/packages/create-astro/src/templates/starter/src/components/Tour.astro @@ -20,7 +20,7 @@ </pre> <p> - Astro looks for <code>.astro</code> or <code>.md.astro</code> files in the <code>src/pages/</code> directory. + Astro looks for <code>.astro</code> or <code>.md</code> files in the <code>src/pages/</code> directory. Each page is exposed as a route based on its file name. </p> |