---
layout: ikrpg
title: Unofficial IKRPG Wiki
tags: [ Factual dimension, Geographic dimension, Time dimension ]
---
{% assign sorted_posts = site.posts | sort:"title" %}
Welcome to the unofficial Iron Kingdoms Role Playing Game (IKRPG) wiki.
Pages
{% for post in sorted_posts %}
{% if post.categories == empty %}
- {{ post.title }}
{% endif %}
{% endfor %}
{% for category in site.categories %}
{{ category[0] | upcase }}
{% for post in sorted_posts %}
{% if post.categories contains category[0] %}
-
{{ post.title }}
{% endif %}
{% endfor %}
{% endfor %}