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

67 lines
1.7 KiB
HTML
Raw Normal View History

2014-05-16 08:51:56 +01:00
---
title: Welcome to the Wiki
---
2014-05-08 20:23:39 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
2014-05-16 08:51:56 +01:00
<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" />
2014-05-08 20:23:39 +01:00
<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>
2014-05-16 08:51:56 +01:00
<ul>
{% for post in site.posts %}
2015-02-18 21:30:47 +00:00
<li><a href="{{ post.url }}">{{ post.date | date: "%Y-%m-%d" }} - {{ post.title }}</a></li>
2014-05-16 08:51:56 +01:00
{% 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>
2014-05-08 20:23:39 +01:00
</section>
</div>
</body>
</html>