aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--thoughts.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/thoughts.html b/thoughts.html
index b024d85..89159c3 100644
--- a/thoughts.html
+++ b/thoughts.html
@@ -4,10 +4,10 @@ layout: index
4 4
5<h2>Thoughts in microbloging style</h2> 5<h2>Thoughts in microbloging style</h2>
6{% for post in site.posts %} 6{% for post in site.posts %}
7{% if post.type == "though" %} 7{% if post.type == "thought" %}
8<article> 8<article>
9 <div><strong>{{ post.title }}</strong></div> 9 <div><strong>{{ post.title }}</strong></div>
10 <p><small><i>{{ post.date | date: '%B %d, %Y' }}</i></small></p> 10 <div><small><i>{{ post.date | date: '%B %d, %Y' }}</i></small></div>
11 <div>{{ post.content }}</div> 11 <div>{{ post.content }}</div>
12</article> 12</article>
13{% endif %} 13{% endif %}