Reorganization into categories.

This commit is contained in:
phil 2013-07-03 23:37:58 +02:00
parent b942756c9f
commit 8e496bcc1d
20 changed files with 415 additions and 622 deletions

View file

@ -1,15 +1,31 @@
---
layout: ikrpg
time: June 2, 2013
title: Unofficial IKRPG Wiki
tags: [Factual dimension, Geographic dimension, Time dimension]
tags: [ Factual dimension, Geographic dimension, Time dimension ]
---
{% assign sorted_posts = site.posts | sort:"title" %}
<p>
Welcome to the unofficial Iron Kingdoms RPG Wiki.
</p>
<h2>Pages</h2>
<h2 id="Pages">Pages</h2>
<ul>
{% for post in site.posts reversed sort:title %}
{% for post in sorted_posts %}
{% if post.categories == empty %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
</ul>
{% for category in site.categories %}
<h2>{{ category[0] | upcase }}</h2>
<ul>
{% for post in sorted_posts %}
{% if post.categories contains category[0] %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
{% endfor %}