-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (32 loc) · 1 KB
/
index.html
File metadata and controls
37 lines (32 loc) · 1 KB
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: default
title: Thomas Renkert
---
{% assign first_post = site.posts.first %}
<div>
<h2><a href="{{ first_post.url }}">{{ first_post.title }}</a></h2>
<div class="post-info span-3 colborder">
<div>{{ first_post.date | date: "%d %B %Y" }}</div>
<div><a href="{{ first_post.url }}#comments">Comments</a></div>
</div>
<div class="span-16 post">
<div class="post-content">
{{ first_post.content }}
</div>
<div class="related-posts">
<h2>Older Posts</h2>
<ul>
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="span-3 colborder-left last">
<!-- <img src="http://www.gravatar.com/avatar/bff5752d70c053adecf8d525c8266722.png?s=120"/> -->
<p>
Test
</p>
<a href="http://trenkert.github.com/atom.xml"><img src="/images/feed-icon-14x14.png" title="feed" /></a>
</div>
</div>