---
layout: page
title: All pages
permalink: /all
---
# All content
## Pages
{% assign pages = site.html_pages | where_exp:"page","page.hidden!=true" | sort_natural %}
{% for note in pages %}
- {{note.title}}
{% endfor %}
## Notes
{% assign notes = site.notes | sort_natural %}
{% for note in notes %}
- {{note.title}}
{% endfor %}