26 lines
483 B
Markdown
26 lines
483 B
Markdown
---
|
|
layout: page
|
|
title: All pages
|
|
permalink: /all
|
|
---
|
|
|
|
# All content
|
|
|
|
## Pages
|
|
|
|
<ul>
|
|
{% assign pages = site.html_pages | where_exp:"page","page.hidden!=true" | sort_natural %}
|
|
{% for note in pages %}
|
|
<li><a class="internal-link" href="{{ note.url }}">{{note.title}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
## Notes
|
|
|
|
<ul>
|
|
{% assign notes = site.notes | sort_natural %}
|
|
{% for note in notes %}
|
|
<li><a class="internal-link" href="{{ note.url }}">{{note.title}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|