mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 15:05:38 -06:00
📝
This commit is contained in:
parent
b099eb6490
commit
869bdde480
1 changed files with 7 additions and 7 deletions
|
@ -158,23 +158,23 @@ module.exports = {
|
||||||
|
|
||||||
### プロジェクト構造
|
### プロジェクト構造
|
||||||
|
|
||||||
In order to take advantage of the default configuration, your project should look something like this...
|
デフォルト設定を利用するために、プロジェクトは次のようになります...
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
.
|
.
|
||||||
├── assets
|
├── assets
|
||||||
│ └── css
|
│ └── css
|
||||||
│ └── compiled
|
│ └── compiled
|
||||||
│ └── main.css # this is the file we will generate
|
│ └── main.css # これが生成するファイル
|
||||||
├── config # site config
|
├── config # サイト設定
|
||||||
│ └── _default
|
│ └── _default
|
||||||
├── content # site content
|
├── content # サイトコンテンツ
|
||||||
│ ├── _index.md
|
│ ├── _index.md
|
||||||
│ ├── projects
|
│ ├── projects
|
||||||
│ │ └── _index.md
|
│ │ └── _index.md
|
||||||
│ └── blog
|
│ └── blog
|
||||||
│ └── _index.md
|
│ └── _index.md
|
||||||
├── layouts # custom layouts for your site
|
├── layouts # サイトのカスタムレイアウト
|
||||||
│ ├── partials
|
│ ├── partials
|
||||||
│ │ └── extend-article-link/simple.html
|
│ │ └── extend-article-link/simple.html
|
||||||
│ ├── projects
|
│ ├── projects
|
||||||
|
@ -182,10 +182,10 @@ In order to take advantage of the default configuration, your project should loo
|
||||||
│ └── shortcodes
|
│ └── shortcodes
|
||||||
│ └── disclaimer.html
|
│ └── disclaimer.html
|
||||||
└── themes
|
└── 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
|
### Install dependencies
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue