Returns an array of all the root pages of the site. 

Usage

{{ site.children }}

Example

{% for item in site.children %}
  <li><a href='{{ item.url }}'>{{ item.name }}</a></li>
{% endfor %}