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