將所有文件放在根目錄下會使Jekyll直接在_site
中生成相應的文件。這可能會有例外,因爲在帖子中使用permalinks
,但其他文件應該可以正常工作。
例如:
$ jekyll new newsite --blank
$ touch image01.jpg
$ touch home.html
$ touch 2017-05-24-sample-post.html
$ touch main.css
$ touch main.js
$ tree
.
├── 2017-05-24-sample-post.html
├── about.md
├── _config.yml
├── Gemfile
├── Gemfile.lock
├── home.html
├── image01.jpg
├── index.md
├── main.css
├── main.js
└── _posts
└── 2017-06-12-welcome-to-jekyll.markdown
1 directory, 11 files
$jekyll build
├── 2017-05-24-sample-post.html
├── about.md
├── _config.yml
├── Gemfile
├── Gemfile.lock
├── home.html
├── image01.jpg
├── index.md
├── main.css
├── main.js
├── _posts
│ └── 2017-06-12-welcome-to-jekyll.markdown
└── _site
├── 2017-05-24-sample-post.html
├── about
│ └── index.html
├── assets
│ └── main.css
├── feed.xml
├── home.html
├── image01.jpg
├── index.html
├── jekyll
│ └── update
│ └── 2017
│ └── 06
│ └── 12
│ └── welcome-to-jekyll.html
├── main.css
└── main.js
9 directories, 21 files
看到新的文件是如何在根級別創建。