forked from Hounddog/hounddog.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 925 Bytes
/
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
---
layout: layout
title: "Martin Shwalbe"
---
<h2>Posts</h2>
<table class="table table-striped">
<tbody>
{% for post in site.posts %}
<tr>
<td>
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<i>{{ post.summary }}</i>
<p>
<small>
{{ post.date | date: "%B %e, %Y" }} . {{ post.category }} .
{% for tag in post.tags %}
<a href="/tags/{{ tag }}" title="View posts tagged with "{{ tag }}"">{{ tag }}</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>
{% endfor %}
</tbody>
</table>