mirror of
https://github.com/ikrpg/ikrpg.github.io.git
synced 2026-05-13 14:27:22 +00:00
31 lines
No EOL
752 B
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 %} |