You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
514 B
Markdown

2 years ago
---
layout: page2
title: Pages
sidebar: 1
order: 2
---
<p class="message">
All the pages written on nq4t.com are listed right here!
</p>
{% assign sorted_category = site.categories | sorted %}
<div>
{% for category in sorted_category %}
{% unless category[0] == "blog" or category[0] == "pages" %}
<h3>{{ category[0] }}</h3>
{% for page in category[1] %}
<li>
<a href="{{ page.url }}">{{ page.title }}</a>
</li>
{% endfor %}
{% endunless %}
{% endfor %}
</div>