Jekyll将所有文件构建到_site,没有子文件夹

时间:2017-06-12 14:49:33

标签: jekyll

目前,当我的网站构建时,会在_site目录中为各种资产(例如静态,上传等)创建子文件夹。我想将所有文件转储到没有子文件夹的顶级目录中。因此,所有图像和帖子等将一起进入_site,没有子文件夹分离。它看起来像这样:

_site
  - image01.jpg
  - home.html
  - 2017-05-24-sample-post.html
  - main.css
  - main.js

这可能吗?

1 个答案:

答案 0 :(得分:0)

将所有文件放在根级别会使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

了解如何在根级别创建新文件。