Skip to content

Commit 40ecc8e

Browse files
committed
a few more
1 parent 709773a commit 40ecc8e

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

content/tutorial/02-sveltekit/02-routing/03-params/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Let's create that file:
99

1010
```svelte
1111
/// file: src/routes/blog/[slug]/+page.svelte
12-
<h1>Blog post</h1>
12+
<h1>blog post</h1>
1313
```
1414

1515
We can now navigate from the `/blog` page to individual blog posts. In the next chapter, we'll see how to load their content.

content/tutorial/02-sveltekit/02-routing/03-params/app-a/src/routes/blog/+page.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1>Blog</h1>
1+
<h1>blog</h1>
22

33
<ul>
44
<li><a href="/blog/one">one</a></li>
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<h1>Blog post</h1>
1+
<h1>blog post</h1>

content/tutorial/02-sveltekit/03-loading-data/01-page-data/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ We can access this data in `src/routes/blog/+page.svelte` via the `data` prop:
3636
export let data;
3737
</script>+++
3838
39-
<h1>Blog</h1>
39+
<h1>blog</h1>
4040
4141
<ul>
4242
--- <li><a href="/blog/one">one</a></li>
@@ -69,7 +69,7 @@ export function load({ params }) {
6969
export let data;
7070
</script>+++
7171
72-
---<h1>Blog post</h1>---
72+
---<h1>blog post</h1>---
7373
+++<h1>{data.post.title}</h1>
7474
<div>{@html data.post.content}</div>+++
7575
```

content/tutorial/02-sveltekit/03-loading-data/01-page-data/app-a/src/routes/blog/+page.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1>Blog</h1>
1+
<h1>blog</h1>
22

33
<ul>
44
<li><a href="/blog/one">one</a></li>
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<h1>Blog post</h1>
1+
<h1>blog post</h1>

content/tutorial/02-sveltekit/03-loading-data/01-page-data/app-b/src/routes/blog/+page.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
export let data;
33
</script>
44

5-
<h1>Blog</h1>
5+
<h1>blog</h1>
66

77
<ul>
88
{#each data.summaries as { slug, title }}

0 commit comments

Comments
 (0)