From 7fda4d7d998e898b617b1a2dd590036ee7143420 Mon Sep 17 00:00:00 2001 From: Damanjeet Singh <49544630+DamanjeetSingh1@users.noreply.github.com> Date: Thu, 18 Apr 2024 17:05:07 +0530 Subject: [PATCH] fixed the path to checkout existing blog posts 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/". --- examples/blog/src/pages/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/blog/src/pages/index.astro b/examples/blog/src/pages/index.astro index 46975d8fbde4..31269efde09a 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';
  • Edit this page in src/pages/index.astro
  • Edit the site header items in src/components/Header.astro
  • Add your name to the footer in src/components/Footer.astro
  • -
  • Check out the included blog posts in src/pages/blog/
  • +
  • Check out the included blog posts in src/content/blog/
  • Customize the blog post page layout in src/layouts/BlogPost.astro