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