New: Ability, Adventuring Company, Alchemy, Archetype, Career, Character Creation, Equipment, Markup, Mechanika, Monsternomicon, Organization, Race, Skill, Spell, Steamjack, Thrall

This commit is contained in:
phil 2013-06-12 08:38:42 +02:00
commit 04d184a4db
38 changed files with 7579 additions and 0 deletions

54
_layouts/ikrpg.html Normal file
View file

@ -0,0 +1,54 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/static/stylesheets/index.css" />
<script src="/static/javascripts/expandable.js"></script>
<script src="/static/javascripts/opaquable.js"></script>
<script src="/static/javascripts/resizable.js"></script>
</head>
<body>
<article itemscope itemtype="http://schema.org/Article">
<nav id="menu">
<ol>
<li><a href="#" class="red js-expandable">&#xE012;</a></li>
<li><a href="#" class="red js-opaquable">&#xE05D;</a></li>
<li><a href="#" class="red js-resizable">&#xE0EA;</a></li>
<li><a href="#" class="green">&#xE099;</a></li>
<li><a href="#" class="green">&#xE026;</a></li>
<li><a href="#" class="green">&#xE0B5;</a></li>
<li><a href="#" class="green">&#xE0F0;</a></li>
<li><a href="#">&#xE09A;</a></li>
<li><a href="/">&#xE081;</a></li>
<li>
<a href="#">
<time datetime="2012-08-07" pubdate itemprop="dateCreated">{{ page.time }}</time>
</a>
</li>
</ol>
</nav>
<header id="head">
<h1 itemprop="name">{{ page.title }}</h1>
<nav>
<ol>
{% for tag in page.tags %}
<li><a href="#">{{ tag }}</a></li>
{% endfor %}
</ol>
</nav>
</header>
<section class="content" itemprop="articleBody">{{ content }}</section>
<footer id="foot">
This page was edited by
<ul>
{% for editor in page.editors %}
<li itemprop="creator" itemscope itemtype="http://schema.org/Person">
<a itemprop="name" href="#">{{ editor }}</a>
</li>
{% endfor %}
</ul>
</footer>
</article>
</body>
</html>