ikrpg.github.io/index.html

31 lines
No EOL
752 B
HTML

---
layout: ikrpg
title: Unofficial IKRPG Wiki
tags: [ Factual dimension, Geographic dimension, Time dimension ]
---
{% assign sorted_posts = site.posts | sort:"title" %}
<p>
Welcome to the unofficial Iron Kingdoms Role Playing Game (IKRPG) wiki.
</p>
<h2 id="Portals">Portals</h2>
<ul>
{% for post in sorted_posts %}
{% if post.categories == empty %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
</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 %}