summaryrefslogtreecommitdiff
path: root/examples/blog-multiple-authors
diff options
context:
space:
mode:
authorGravatar Caleb Jasik <calebjasik@jasik.xyz> 2021-07-16 06:01:31 -0500
committerGravatar GitHub <noreply@github.com> 2021-07-16 07:01:31 -0400
commit6d06fce6d2f47ee793b98b970212b27e8dc059f2 (patch)
treee8424c9266de0886e8fb3c133da7f87e2eeacb11 /examples/blog-multiple-authors
parentf64ff85b267b732dc2598bb9c80418622e435cfb (diff)
downloadastro-6d06fce6d2f47ee793b98b970212b27e8dc059f2.tar.gz
astro-6d06fce6d2f47ee793b98b970212b27e8dc059f2.tar.zst
astro-6d06fce6d2f47ee793b98b970212b27e8dc059f2.zip
Update docs in compiler messages (#710)
* `github.com/snowpackjs/astro/blob/main/docs/*.md` -> `docs.astro.build/*/` * convert links to docs site links * Fix broken links that didn't work w/ the regex. * Add changeset * Delete five-weeks-destroy.md Co-authored-by: Fred K. Schott <fkschott@gmail.com>
Diffstat (limited to 'examples/blog-multiple-authors')
-rw-r--r--examples/blog-multiple-authors/src/pages/index.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog-multiple-authors/src/pages/index.astro b/examples/blog-multiple-authors/src/pages/index.astro
index f8728f542..e3e86e1da 100644
--- a/examples/blog-multiple-authors/src/pages/index.astro
+++ b/examples/blog-multiple-authors/src/pages/index.astro
@@ -19,7 +19,7 @@ allPosts.sort((a, b) => new Date(b.date) - new Date(a.date));
let firstPage = allPosts.slice(0, 2);
// 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>