---
layout: page
title: All pages
permalink: /all
---
# All pages and notes
## Pages
{% assign pages = site.html_pages | where:"hidden",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 %}