-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
32 lines (31 loc) · 1.04 KB
/
index.html
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
---
layout: layout
title: "Martin Shwalbe"
---
<h2>Posts</h2>
<table class="table table-striped">
<tbody>
{% for post in site.posts %}
{% if post.categories contains 'blog' %}
<tr>
<td>
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<i>{{ post.summary }}</i>
<p>
<small>
{{ post.date | date: "%B %e, %Y" }} .
{% for cat in post.categories %}
<a href="#">{{ cat[0] }}</a>
{% if forloop.last != true %}
{% endif %}
{% endfor %} .
<a href="http://hounddog.github.com{{ post.url }}#disqus_thread"
data-disqus-identifier="{{ post.url }}"></a>
</small>
</p>
</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>