**.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>
## 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**