summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/index.html b/index.html
index ec841a7..9f51f09 100644
--- a/index.html
+++ b/index.html
@@ -8,3 +8,29 @@ title: the wiki
<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>