blob: 89159c391a4d4891b53e131ccfe00c5a30d3af0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
layout: index
---
<h2>Thoughts in microbloging style</h2>
{% for post in site.posts %}
{% if post.type == "thought" %}
<article>
<div><strong>{{ post.title }}</strong></div>
<div><small><i>{{ post.date | date: '%B %d, %Y' }}</i></small></div>
<div>{{ post.content }}</div>
</article>
{% endif %}
{% endfor %}
|