Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

Commit40ecc8e

Browse files
committed
a few more
1 parent709773a commit40ecc8e

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‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 1 addition & 1 deletion
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><ahref="/blog/one">one</a></li>
Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 2 additions & 2 deletions
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‎

Lines changed: 1 addition & 1 deletion
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><ahref="/blog/one">one</a></li>
Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
exportlet data;
33
</script>
44

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

77
<ul>
88
{#eachdata.summariesas { slug, title }}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp