readme clarifications

This commit is contained in:
Tom Preston-Werner 2008-12-14 15:02:17 -08:00
parent d48157cf33
commit 043fb15ca9
1 changed files with 10 additions and 9 deletions

View File

@ -79,34 +79,35 @@ h3. Global
h3. Site h3. Site
site.time site.time
The current Time (when you run the jekyll command) The current Time (when you run the jekyll command).
site.posts site.posts
A reverse chronological list of Posts A reverse chronological list of all Posts.
site.related_posts site.related_posts
If the page being processed is a Post, this contains a list of up to ten If the page being processed is a Post, this contains a list of up to ten
related Posts. For high quality results be sure to run the jekyll command related Posts. By default, these are low quality but fast to compute. For
with the --lsi option. high quality but slow to compute results, run the jekyll command with the
--lsi (latent semantic indexing) option.
h3. Post h3. Post
post.title post.title
The title of the Post The title of the Post.
post.url post.url
The URL of the Post without the domain The URL of the Post without the domain.
e.g. /2008/12/14/my-post.html e.g. /2008/12/14/my-post.html
post.date post.date
The Date assigned to the Post The Date assigned to the Post.
post.id post.id
An identifier unique to the Post (useful in RSS feeds) An identifier unique to the Post (useful in RSS feeds).
e.g. /2008/12/14/my-post e.g. /2008/12/14/my-post
post.content post.content
The content of the Post The content of the Post.
h2. YAML Front Matter h2. YAML Front Matter