summaryrefslogtreecommitdiff
path: root/examples/blog
diff options
context:
space:
mode:
Diffstat (limited to 'examples/blog')
-rw-r--r--examples/blog/.gitignore2
-rw-r--r--examples/blog/README.md2
-rw-r--r--examples/blog/src/components/AuthorCard.astro (renamed from examples/blog/astro/components/AuthorCard.astro)0
-rw-r--r--examples/blog/src/components/Counter.jsx (renamed from examples/blog/astro/components/Counter.jsx)0
-rw-r--r--examples/blog/src/components/MainHead.astro (renamed from examples/blog/astro/components/MainHead.astro)0
-rw-r--r--examples/blog/src/components/Nav.astro (renamed from examples/blog/astro/components/Nav.astro)0
-rw-r--r--examples/blog/src/components/Pagination.astro (renamed from examples/blog/astro/components/Pagination.astro)0
-rw-r--r--examples/blog/src/components/PostPreview.astro (renamed from examples/blog/astro/components/PostPreview.astro)0
-rw-r--r--examples/blog/src/data/authors.json (renamed from examples/blog/astro/data/authors.json)0
-rw-r--r--examples/blog/src/layouts/post.astro (renamed from examples/blog/astro/layouts/post.astro)0
-rw-r--r--examples/blog/src/pages/$posts.astro (renamed from examples/blog/astro/pages/$posts.astro)0
-rw-r--r--examples/blog/src/pages/$tag.astro (renamed from examples/blog/astro/pages/$tag.astro)0
-rw-r--r--examples/blog/src/pages/index.astro (renamed from examples/blog/astro/pages/index.astro)0
-rw-r--r--examples/blog/src/pages/post/muppet-babies.md (renamed from examples/blog/astro/pages/post/muppet-babies.md)0
-rw-r--r--examples/blog/src/pages/post/muppet-treasure-island.md (renamed from examples/blog/astro/pages/post/muppet-treasure-island.md)0
-rw-r--r--examples/blog/src/pages/post/muppets-from-space.md (renamed from examples/blog/astro/pages/post/muppets-from-space.md)0
-rw-r--r--examples/blog/src/pages/post/muppets-most-wanted.md (renamed from examples/blog/astro/pages/post/muppets-most-wanted.md)0
-rw-r--r--examples/blog/src/pages/post/the-muppet-christmas-carol.md (renamed from examples/blog/astro/pages/post/the-muppet-christmas-carol.md)0
-rw-r--r--examples/blog/src/pages/post/the-muppet-show.md (renamed from examples/blog/astro/pages/post/the-muppet-show.md)0
-rw-r--r--examples/blog/src/pages/post/the-muppets.md (renamed from examples/blog/astro/pages/post/the-muppets.md)0
20 files changed, 2 insertions, 2 deletions
diff --git a/examples/blog/.gitignore b/examples/blog/.gitignore
index ca35be08d..1521c8b76 100644
--- a/examples/blog/.gitignore
+++ b/examples/blog/.gitignore
@@ -1 +1 @@
-_site
+dist
diff --git a/examples/blog/README.md b/examples/blog/README.md
index 2cc988b7e..f1894ad62 100644
--- a/examples/blog/README.md
+++ b/examples/blog/README.md
@@ -20,4 +20,4 @@ Preview at `http://localhost:3000`
npm build
```
-Will output static site at `./_site`
+Will output static site at `./dist`
diff --git a/examples/blog/astro/components/AuthorCard.astro b/examples/blog/src/components/AuthorCard.astro
index 46ff504f7..46ff504f7 100644
--- a/examples/blog/astro/components/AuthorCard.astro
+++ b/examples/blog/src/components/AuthorCard.astro
diff --git a/examples/blog/astro/components/Counter.jsx b/examples/blog/src/components/Counter.jsx
index c9b27e1a7..c9b27e1a7 100644
--- a/examples/blog/astro/components/Counter.jsx
+++ b/examples/blog/src/components/Counter.jsx
diff --git a/examples/blog/astro/components/MainHead.astro b/examples/blog/src/components/MainHead.astro
index bff812b0c..bff812b0c 100644
--- a/examples/blog/astro/components/MainHead.astro
+++ b/examples/blog/src/components/MainHead.astro
diff --git a/examples/blog/astro/components/Nav.astro b/examples/blog/src/components/Nav.astro
index f1ac28c98..f1ac28c98 100644
--- a/examples/blog/astro/components/Nav.astro
+++ b/examples/blog/src/components/Nav.astro
diff --git a/examples/blog/astro/components/Pagination.astro b/examples/blog/src/components/Pagination.astro
index 8e033c668..8e033c668 100644
--- a/examples/blog/astro/components/Pagination.astro
+++ b/examples/blog/src/components/Pagination.astro
diff --git a/examples/blog/astro/components/PostPreview.astro b/examples/blog/src/components/PostPreview.astro
index e4e39143a..e4e39143a 100644
--- a/examples/blog/astro/components/PostPreview.astro
+++ b/examples/blog/src/components/PostPreview.astro
diff --git a/examples/blog/astro/data/authors.json b/examples/blog/src/data/authors.json
index c0f247e02..c0f247e02 100644
--- a/examples/blog/astro/data/authors.json
+++ b/examples/blog/src/data/authors.json
diff --git a/examples/blog/astro/layouts/post.astro b/examples/blog/src/layouts/post.astro
index 09e0fdbcd..09e0fdbcd 100644
--- a/examples/blog/astro/layouts/post.astro
+++ b/examples/blog/src/layouts/post.astro
diff --git a/examples/blog/astro/pages/$posts.astro b/examples/blog/src/pages/$posts.astro
index ebb20705d..ebb20705d 100644
--- a/examples/blog/astro/pages/$posts.astro
+++ b/examples/blog/src/pages/$posts.astro
diff --git a/examples/blog/astro/pages/$tag.astro b/examples/blog/src/pages/$tag.astro
index 6eef913cf..6eef913cf 100644
--- a/examples/blog/astro/pages/$tag.astro
+++ b/examples/blog/src/pages/$tag.astro
diff --git a/examples/blog/astro/pages/index.astro b/examples/blog/src/pages/index.astro
index 2af3a1a03..2af3a1a03 100644
--- a/examples/blog/astro/pages/index.astro
+++ b/examples/blog/src/pages/index.astro
diff --git a/examples/blog/astro/pages/post/muppet-babies.md b/examples/blog/src/pages/post/muppet-babies.md
index 53339cac1..53339cac1 100644
--- a/examples/blog/astro/pages/post/muppet-babies.md
+++ b/examples/blog/src/pages/post/muppet-babies.md
diff --git a/examples/blog/astro/pages/post/muppet-treasure-island.md b/examples/blog/src/pages/post/muppet-treasure-island.md
index f193ff8ae..f193ff8ae 100644
--- a/examples/blog/astro/pages/post/muppet-treasure-island.md
+++ b/examples/blog/src/pages/post/muppet-treasure-island.md
diff --git a/examples/blog/astro/pages/post/muppets-from-space.md b/examples/blog/src/pages/post/muppets-from-space.md
index d4d9c521f..d4d9c521f 100644
--- a/examples/blog/astro/pages/post/muppets-from-space.md
+++ b/examples/blog/src/pages/post/muppets-from-space.md
diff --git a/examples/blog/astro/pages/post/muppets-most-wanted.md b/examples/blog/src/pages/post/muppets-most-wanted.md
index 7d7f99dce..7d7f99dce 100644
--- a/examples/blog/astro/pages/post/muppets-most-wanted.md
+++ b/examples/blog/src/pages/post/muppets-most-wanted.md
diff --git a/examples/blog/astro/pages/post/the-muppet-christmas-carol.md b/examples/blog/src/pages/post/the-muppet-christmas-carol.md
index dc32fc66e..dc32fc66e 100644
--- a/examples/blog/astro/pages/post/the-muppet-christmas-carol.md
+++ b/examples/blog/src/pages/post/the-muppet-christmas-carol.md
diff --git a/examples/blog/astro/pages/post/the-muppet-show.md b/examples/blog/src/pages/post/the-muppet-show.md
index ebd2ca6dd..ebd2ca6dd 100644
--- a/examples/blog/astro/pages/post/the-muppet-show.md
+++ b/examples/blog/src/pages/post/the-muppet-show.md
diff --git a/examples/blog/astro/pages/post/the-muppets.md b/examples/blog/src/pages/post/the-muppets.md
index 0f3266170..0f3266170 100644
--- a/examples/blog/astro/pages/post/the-muppets.md
+++ b/examples/blog/src/pages/post/the-muppets.md