aboutsummaryrefslogtreecommitdiff
path: root/journal.html
diff options
context:
space:
mode:
Diffstat (limited to 'journal.html')
-rw-r--r--journal.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/journal.html b/journal.html
new file mode 100644
index 0000000..bad099d
--- /dev/null
+++ b/journal.html
@@ -0,0 +1,14 @@
1---
2layout: index
3---
4
5<h2>Journal in microbloging style</h2>
6{% for post in site.posts %}
7{% if post.type == "journal" %}
8<article>
9 <div><strong>{{ post.title }}</strong></div>
10 <div><small><i>{{ post.date | date: '%B %d, %Y' }}</i></small></div>
11 <div>{{ post.content }}</div>
12</article>
13{% endif %}
14{% endfor %}