blob: d434c1cb82bec4caf880b5c18f46e6bb09161f3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
---
layout: master
title: the wiki
---
<header>
<div class="inner">
<h1>Hello world</h1>
<p> what now? </p>
</div>
</header>
<div class="row">
<div class="span12">
<table class="table table-striped">
<thead>
<tr>
<th>date</th>
<th>title</th>
<th>categories</th>
</tr>
</thead>
<tbody>
{% for post in site.posts %}
<tr>
<td>{{ post.date | date_to_string }}</td>
<td><a href="{{ post.url }}">{{ post.title }}</a></td>
<td>
{% for category in post.categories %}
<span class="label">{{ category }}</span>
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
|