diff options
author | 2024-04-19 13:32:17 +0530 | |
---|---|---|
committer | 2024-04-19 10:02:17 +0200 | |
commit | f214ae798c97becff2aaf81a530613ab002055f3 (patch) | |
tree | 4632c27e23dcc8f6f0017c85720704c0c33a8c59 /examples/blog/src | |
parent | 7fda037b277201b261e53dd0d43a92c5e8f1c638 (diff) | |
download | astro-f214ae798c97becff2aaf81a530613ab002055f3.tar.gz astro-f214ae798c97becff2aaf81a530613ab002055f3.tar.zst astro-f214ae798c97becff2aaf81a530613ab002055f3.zip |
fixed the path to checkout existing blog posts on the home page of the blog starter template (#10814)
Currently the 4th point on home page says: "Check out the included blog posts in src/pages/blog/". It the path here should be "src/content/blog/".
Diffstat (limited to 'examples/blog/src')
-rw-r--r-- | examples/blog/src/pages/index.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog/src/pages/index.astro b/examples/blog/src/pages/index.astro index 46975d8fb..31269efde 100644 --- a/examples/blog/src/pages/index.astro +++ b/examples/blog/src/pages/index.astro @@ -30,7 +30,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'; <li>Edit this page in <code>src/pages/index.astro</code></li> <li>Edit the site header items in <code>src/components/Header.astro</code></li> <li>Add your name to the footer in <code>src/components/Footer.astro</code></li> - <li>Check out the included blog posts in <code>src/pages/blog/</code></li> + <li>Check out the included blog posts in <code>src/content/blog/</code></li> <li>Customize the blog post page layout in <code>src/layouts/BlogPost.astro</code></li> </ul> <p> |