变量
Jekyll 遍历你的站点并寻找需要处理的文件。任何文件只要带有 front matter 就会被处理。对于每一个需要处理的 文件,Jekyll 通过 Liquid 为其提供各种数据。 以下是所有可用数据的完整列表。
全局变量
Variable | Description |
---|---|
|
Site wide information + configuration settings from |
|
Page specific information + the front matter. Custom variables set via the front matter will be available here. See below for details. |
|
Layout specific information + the front matter. Custom variables set via front matter in layouts will be available here. |
|
In layout files, the rendered content of the Post or Page being wrapped. Not defined in Post or Page files. |
|
When the |
站点(Site)变量
Variable | Description |
---|---|
|
The current time (when you run the |
|
A list of all Pages. |
|
A reverse chronological list of all Posts. |
|
If the page being processed is a Post, this contains a list of up to ten related Posts. By default, these are the ten most recent posts. For high quality but slow to compute results, run the |
|
A list of all static files (i.e. files not processed by Jekyll's converters or the Liquid renderer). Each file has five properties: |
|
A subset of |
|
A subset of |
|
A list of all the collections (including posts). |
|
A list containing the data loaded from the YAML files located in the |
|
A list of all the documents in every collection. |
|
The list of all Posts in category |
|
The list of all Posts with tag |
|
Contains the url of your site as it is configured in the |
|
All the variables set via the command line and your |
页面(Page)变量
Variable | Description |
---|---|
|
The content of the Page, rendered or un-rendered depending upon what Liquid is being processed and what |
|
The title of the Page. |
|
The un-rendered excerpt of a document. |
|
The URL of the Post without the domain, but with a leading slash, e.g. |
|
The Date assigned to the Post. This can be overridden in a Post’s front matter by specifying a new date/time in the format |
|
An identifier unique to a document in a Collection or a Post (useful in RSS feeds). e.g. |
|
The list of categories to which this post belongs. Categories are derived from the directory structure above the |
|
The label of the collection to which this document belongs. e.g. |
|
The list of tags to which this post belongs. These can be specified in the front matter. |
|
The path between the source directory and the file of the post or page, e.g. |
|
The filename of the post or page, e.g. |
|
The path to the raw post or page. Example usage: Linking back to the page or post’s source on GitHub. This can be overridden in the front matter. |
|
The next post relative to the position of the current post in |
|
The previous post relative to the position of the current post in |
ProTip™: 使用自定义的 Front Matter
你自己定义的任何 front matter 都可以在
页面(page)
中直接引用。例如,如果你定义了 custom_css: true
在页面的 front matter 中,那么,可以通过 page.custom_css
访问。
如果你在布局文件(layout)中定义了 front matter,那么可以通过 layout
变量访问。
例如,如果你在布局文件(layout)的 front matter 中定义了 class: full_page
,
那么该值可以在布局文件及其父文件中通过 layout.class
访问。
分页器
Variable | Description |
---|---|
|
The number of the current page |
|
Number of posts per page |
|
Posts available for the current page |
|
Total number of posts |
|
Total number of pages |
|
The number of the previous page, or |
|
The path to the previous page, or |
|
The number of the next page, or |
|
The path to the next page, or |
分页器变量的可用范围
这些只在 index 文件中可以使用,不过,index 文件可以位于子目录中,
例如 /blog/index.html
。