blob: d4a55f5ed7da869a80bcd72bb0d3d91584ed2f99 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
layout: default
title: I'm a lumberjaph
---
{% assign first_post = site.posts.first %}
<div id="post">
<h2 id="post_title"><a href="{{ first_post.url }}">{{first_post.title }}</a></h2>
<article>
<h4 id="date">published {{ first_post.date | date_to_string }}</h4>
{{ first_post.content }}
</article>
<a id="more" href="{{ first_post.url }}#disqus">Comments »</a>
</div>
|