qrush / litanyagainstfear

coding with spice

This URL has Read+Write access

litanyagainstfear / index.html
100644 21 lines (18 sloc) 0.546 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: default
title: coding with spice
---
{% assign first_post = site.posts.first %}
<div id="post">
  <h2><a href="{{ first_post.url }}">{{ first_post.title }}</a></h2>
  <div id="date">published {{ first_post.date | date_to_string }}</div>
  {{ first_post.content }}
  <a id="more" href="{{ first_post.url }}#disqus">Comments &raquo;</a>
</div>
 
<hr />
 
<h2>archive</h2>
<ul id="archive">
{% for post in site.posts %}
<li><a href="{{ post.url }}">{{ post.title }}</a><abbr>{{ post.date | date_to_string }}</abbr></li>
{% endfor %}
</ul>