From 869bdde4807685132f63b57fd3ada5318376388d Mon Sep 17 00:00:00 2001 From: yuubinnkyoku <137483288+yuubinnkyoku@users.noreply.github.com> Date: Mon, 9 Dec 2024 09:27:58 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../docs/advanced-customisation/index.ja.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/exampleSite/content/docs/advanced-customisation/index.ja.md b/exampleSite/content/docs/advanced-customisation/index.ja.md index 214ad5d5..81a3f5b0 100644 --- a/exampleSite/content/docs/advanced-customisation/index.ja.md +++ b/exampleSite/content/docs/advanced-customisation/index.ja.md @@ -158,23 +158,23 @@ module.exports = { ### プロジェクト構造 -In order to take advantage of the default configuration, your project should look something like this... +デフォルト設定を利用するために、プロジェクトは次のようになります... ```shell . ├── assets │ └── css │ └── compiled -│ └── main.css # this is the file we will generate -├── config # site config +│ └── main.css # これが生成するファイル +├── config # サイト設定 │ └── _default -├── content # site content +├── content # サイトコンテンツ │ ├── _index.md │ ├── projects │ │ └── _index.md │ └── blog │ └── _index.md -├── layouts # custom layouts for your site +├── layouts # サイトのカスタムレイアウト │ ├── partials │ │ └── extend-article-link/simple.html │ ├── projects @@ -182,10 +182,10 @@ In order to take advantage of the default configuration, your project should loo │ └── shortcodes │ └── disclaimer.html └── themes - └── blowfish # git submodule or manual theme install + └── blowfish # git サブモジュールまたは手動テーマインストール ``` -This example structure adds a new `projects` content type with its own custom layout along with a custom shortcode and extended partial. Provided the project follows this structure, all that's required is to recompile the `main.css` file. +この例の構造では、独自のカスタムレイアウトを持つ新しい `projects` コンテンツタイプと、カスタムショートコードと拡張パーシャルが追加されています。プロジェクトがこの構造に従っている場合、必要なのは `main.css` ファイルを再コンパイルすることだけです。 ### Install dependencies