Skip to content

Commit

Permalink
i18n(ja): Update astro-pages.mdx (#2576)
Browse files Browse the repository at this point in the history
  • Loading branch information
morinokami authored Feb 8, 2023
1 parent f8ca3d8 commit afdfed1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/pages/ja/core-concepts/astro-pages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Astroは`src/pages/`ディレクトリで次のファイルタイプをサポー

Astroは、**ファイルベースルーティング**と呼ばれるルーティング手法を採用しています。 `src/pages/`ディレクトリの各ファイルはそのファイルパスに基づいたエンドポイントになります。

また、[動的ルーティング](/ja/core-concepts/routing/#動的ルーティング)を使用して、1つのファイルから複数のページを生成できます。これにより、[コンテンツコレクション](/ja/guides/content-collections/)[CMS](/ja/guides/cms/)など、特別な`/pages/`ディレクトリの外にコンテンツがあっても、ページを作成できます。

📚 [Astroのルーティング](/ja/core-concepts/routing/)について詳しくみる。

### ページ間のリンク
Expand Down Expand Up @@ -62,6 +64,8 @@ import MySiteLayout from '../layouts/MySiteLayout.astro';

Astroは`/src/pages/`にあるMarkdown (`.md`) ファイルも、最終的なWebサイトのページとして扱います。もし[MDXインテグレーションがインストールされている](/ja/guides/integrations-guide/mdx/#installation)場合、MDX(`.mdx`)ファイルも同じように扱われます。これらは一般的に、ブログの投稿やドキュメントのような、テキストを多用するページに使用されます。

`src/content/`にある[MarkdownやMDXページコンテンツのコレクション](/ja/guides/content-collections/)は、[動的にページを生成する](/ja/core-concepts/routing/#動的ルーティング)ために使用できます。

ページレイアウトは[Markdownファイル](#markdownmdxページ)に対して特に有効です。Markdownファイルは特別な `layout`というフロントマターのプロパティを使用して、Markdownコンテンツを`<html>...</html>`ページドキュメントにラップする [レイアウトコンポーネント](/ja/core-concepts/layouts/)を指定できます。

```md {3}
Expand Down

0 comments on commit afdfed1

Please sign in to comment.