diff options
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 017daa54a..0ba813eb5 100644 --- a/examples/blog/src/pages/index.astro +++ b/examples/blog/src/pages/index.astro @@ -17,7 +17,7 @@ let allPosts = Astro.fetchContent('./posts/*.md'); allPosts = allPosts.sort((a, b) => new Date(b.publishDate) - new Date(a.publishDate)); // Full Astro Component Syntax: -// https://github.com/snowpackjs/astro/blob/main/docs/core-concepts/astro-components.md +// https://docs.astro.build/core-concepts/astro-components/ --- <html lang="en"> <head> |