---
layout: ikrpg
categories: [ Portal ]
tags: [ Factual dimension, Geographic dimension, Time dimension ]
---
All pages contained in the IKRPG wiki are listed here. They are either a standalone category page or
assigned to a subproject.
{% assign sorted_posts = site.posts | sort:"title" %}
Pages
{% for post in sorted_posts %}
{% if post.categories == empty %}
- {{ post.title }}
{% endif %}
{% endfor %}
{% comment %}
The below code displays the categories in *sorted* order.
{% endcomment %}
{% capture get_items %}
{% for cat in site.categories %}
{{ cat | first | replace: ' ', '_' }}
{% endfor %}
{% endcapture %}
{% capture num_words %}
{{ get_items | split:' ' | sort | join:' ' | number_of_words }}
{% endcapture %}
{% for item in (1..num_words) %}
{% assign category = get_items | split:' ' | sort | join:' ' | truncatewords:item | remove:'...' | split:' ' | last | replace: '_', ' ' %}
{{ category | upcase }}
{% for post in sorted_posts %}
{% if post.categories contains category %}
-
{{ post.title }}
{% endif %}
{% endfor %}
{% endfor %}