wiki/_pages/all.md

26 lines
482 B
Markdown
Raw Normal View History

2022-08-28 23:09:06 +00:00
---
2022-08-29 02:19:55 +00:00
layout: all
2022-08-28 23:09:06 +00:00
title: All pages
permalink: /all
---
2022-08-28 23:15:55 +00:00
# All content
2022-08-28 23:09:06 +00:00
## Pages
<ul>
2022-08-28 23:15:55 +00:00
{% assign pages = site.html_pages | where_exp:"page","page.hidden!=true" | sort_natural %}
2022-08-28 23:09:06 +00:00
{% 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>