Clone
all.liquid.haml
---
title: All the pages
listed: false
published: false
---
{% extends parent %}
{% block content %}
<ul>
{% for page in site.pages %}
<li>{{ page.title }}</li>
{% endfor %}
</ul>

{% fetch_page our-music as my_page %}
<p>Single page: {{ my_page.title }}</p>
{% endblock %}