aboutsummaryrefslogtreecommitdiff
path: root/thoughts.html
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-02-23 10:46:09 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-02-23 10:46:09 +0100
commit5fc534bcd34c3f449ce50fbb9cd29d42eba0c1bd (patch)
tree1e90d7745b73542f1887bd03dd180cce7bfac3b1 /thoughts.html
parent458fea870e4ddda2a081ef3969a0f502a043bb95 (diff)
downloadmitjafelicijan.com-5fc534bcd34c3f449ce50fbb9cd29d42eba0c1bd.tar.gz
Testing thoughts page
Diffstat (limited to 'thoughts.html')
-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 %}