--- layout: step title: Front Matter position: 3 --- Front matter is a snippet of [YAML](http://yaml.org/) which sits between two triple-dashed lines at the top of a file. Front matter is used to set variables for the page, for example: ```liquid --- my_number: 5 --- ``` Front matter variables are available in Liquid under the `page` variable. For example to output the variable above you would use: {% raw %} ```liquid {{ page.my_number }} ``` {% endraw %} ## Use front matter Let's change the `