1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-19 06:23:25 +01:00
wiki.mbirth.de/index.html
2015-02-18 22:24:20 +01:00

67 lines
1.7 KiB
HTML

---
title: Welcome to the Wiki
---
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" type="text/css" href="css/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<title>Wiki by mbirth</title>
</head>
<body>
<header>
<div class="container">
<h1>Wiki</h1>
<h2>Experimental Wiki with Jekyll</h2>
<section id="downloads">
<a href="https://github.com/mbirth/wiki/zipball/master" class="btn">Download as .zip</a>
<a href="https://github.com/mbirth/wiki/tarball/master" class="btn">Download as .tar.gz</a>
<a href="https://github.com/mbirth/wiki" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
</section>
</div>
</header>
<div class="container">
<section id="main_content">
<h3>
<a name="welcome-to-github-pages" class="anchor" href="#welcome-to-github-pages"><span class="octicon octicon-link"></span></a>Welcome to GitHub Pages.</h3>
<p>All posts:</p>
<ul>
{% for post in site.posts %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<p>Tags:</p>
<ul>
{% for tag in site.tags %}
<li>{{ tag[0] }}
<ul>
{% for page in tag[1] %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
<p>Categories:</p>
<ul>
{% for category in site.categories %}
<li>{{ category[0] }}</li>
{% endfor %}
</ul>
</section>
</div>
</body>
</html>