Skip to content

Commit

Permalink
周一-07-31 19:16:03
Browse files Browse the repository at this point in the history
  • Loading branch information
asdqwe123456 committed Jul 31, 2023
1 parent 094f768 commit 04bf973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _posts/API_software/2023-07-31-jekyll.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ $ jekyll build --watch
| ---------------------------------------------------- | ------------------------------------------------------------ |
| `_config.yml` | 保存[配置](http://jekyllcn.com/docs/configuration/)数据。很多配置选项都可以直接在命令行中进行设置,但是如果你把那些配置写在这儿,你就不用非要去记住那些命令了。 |
| `_drafts` | drafts(草稿)是未发布的文章。这些文件的格式中都没有 `title.MARKUP` 数据。学习如何 [使用草稿](http://jekyllcn.com/docs/drafts/). |
| `_includes` | 你可以加载这些包含部分到你的布局或者文章中以方便**重用。**可以用这个标签 `{% include file.ext %}` 来把文件 `_includes下的file.ext` 包含进来。 |
| `_includes` | 你可以加载这些包含部分到你的布局或者文章中以方便**重用。**可以用这个标签 `{% include的 file.ext %}` 来把文件 `_includes下的file.ext` 包含进来。 |
| `_layouts` | layouts(布局)是包裹在文章外部的**模板**。布局可以在 [YAML 头信息](http://jekyllcn.com/docs/frontmatter/)中根据不同文章进行选择。 这将在下一个部分进行介绍。标签 `{{ content }}` 可以将 content 插入页面中。 |
| `_posts` | 这里放的就是你的文章了。文件格式很重要,必须要符合: `YEAR-MONTH-DAY-title.MARKUP`[永久链接](http://jekyllcn.com/docs/permalinks/) 可以在文章中自己定制,但是数据和标记语言都是根据文件名来确定的。 |
| `_data` | 格式化好的网站数据应放在这里。jekyll 的引擎会自动加载在该目录下所有的 yaml 文件(后缀是 `.yml`, `.yaml`, `.json` 或者 `.csv` )。这些文件可以经由 `site.data` 访问。如果有一个 `members.yml` 文件在该目录下,你就可以通过 `site.data.members` 获取该文件的内容。 |
Expand Down

0 comments on commit 04bf973

Please sign in to comment.