mirror of
https://github.com/ikrpg/ikrpg.github.io.git
synced 2026-05-13 14:27:22 +00:00
Reorganization into categories.
This commit is contained in:
parent
b942756c9f
commit
8e496bcc1d
20 changed files with 415 additions and 622 deletions
26
index.html
26
index.html
|
|
@ -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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue