mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 06:34:43 +01:00
47 lines
1.0 KiB
Markdown
47 lines
1.0 KiB
Markdown
---
|
|
---
|
|
|
|
## Page Variables ([reference](https://jekyllrb.com/docs/variables/#page-variables))
|
|
|
|
| Name | Value |
|
|
|------------|---------------------|
|
|
| categories | {{ page.categories }} |
|
|
| date | {{ page.date }} |
|
|
| id | {{ page.id }} |
|
|
| path | {{ page.path }} |
|
|
| tags | {{ page.tags }} |
|
|
| title | {{ page.title }} |
|
|
| url | {{ page.url }} |
|
|
|
|
|
|
{% comment %}
|
|
TODO:
|
|
excerpt
|
|
content
|
|
next
|
|
previous
|
|
{% endcomment %}
|
|
|
|
## Site Variables ([reference](https://jekyllrb.com/docs/variables/#site-variables))
|
|
|
|
| Name | Value | Notes |
|
|
|-------------|----------------------|----------------------|
|
|
| description | {{ site.description }} | (from `_config.yml`) |
|
|
| time | {{ site.time }} | |
|
|
| title | {{ site.title }} | (from `_config.yml`) |
|
|
|
|
{% comment %}
|
|
TODO:
|
|
pages
|
|
posts
|
|
related_posts
|
|
static_files
|
|
html_pages
|
|
html_files
|
|
collections
|
|
data
|
|
documents
|
|
categories
|
|
tags
|
|
{% endcomment %}
|