blob: ef048d29c37850dbdedc51692c64851f8fcece24 (
plain) (
tree)
|
|
---
layout: default
---
{% assign post = site.posts.first %}
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
{% if post.previous.url %}
<p id="bigleft"><a href="{{post.previous.url}}">«</a></p><br />
{% endif %}
{% if post.next.url %}
<p id="bigright"><a href="{{post.next.url}}">»</a></p>
{% endif %}
<div id="entry">
{{ post.content }}
<p class="timestamp">
{% if post.previous.url %}
<a href="{{post.previous.url}}">« {{post.previous.title}}</a> |
{% endif %}
{{ post.date | date_to_string }}
{% if post.next.url %}
| <a href="{{post.next.url}}">{{post.next.title}} »</a>
{% endif %}
</p>
</div>
{% include footer.html %}
|