Add Draft page variable to docs
authorDavid Oliver <david@doliver.co.uk>
Sat, 28 Nov 2015 19:26:01 +0000 (20:26 +0100)
committerAnthony Fok <foka@debian.org>
Tue, 1 Dec 2015 06:38:34 +0000 (23:38 -0700)
Also tweaks language used in page params sentence.

docs/content/templates/variables.md

index 390a26c12d32923a5ad17c68b718f606bd6f89d3..62c4ae359759871fd563ba0be85d01c7874d7411 100644 (file)
@@ -50,6 +50,7 @@ matter, content or derived from file location.
 **.ReadingTime** The estimated time it takes to read the content in minutes.<br>
 **.Weight** Assigned weight (in the front matter) to this content, used in sorting.<br>
 **.RawContent** Raw Markdown content without the metadata header. Useful with [remarkjs.com](http://remarkjs.com)<br>
+**.Draft** A boolean, `true` if the content is marked as a draft in the front matter.<br>
 **.IsNode** Always false for pages.<br>
 **.IsPage** Always true for page.<br>
 **.Site** See [Site Variables]({{< relref "#site-variables" >}}) below.<br>
@@ -58,7 +59,7 @@ matter, content or derived from file location.
 ## Page Params
 
 Any other value defined in the front matter, including taxonomies, will be made available under `.Params`.
-Take for example I'm using *tags* and *categories* as my taxonomies. The following would be how I would access them:
+For example, the *tags* and *categories* taxonomies are accessed with:
 
 * **.Params.tags**
 * **.Params.categories**