diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-02-23 10:35:22 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-02-23 10:35:22 +0100 |
| commit | 4abcce013c9ee3053badf2abda77190233066676 (patch) | |
| tree | 450de7e8fed3c3c7501a9d2e2eb60a676bdfa09e /thoughts.html | |
| parent | cdf50cb2e3051200c6ea0628c318d66220b7d1a1 (diff) | |
| download | mitjafelicijan.com-4abcce013c9ee3053badf2abda77190233066676.tar.gz | |
Testing thoughts page
Diffstat (limited to 'thoughts.html')
| -rw-r--r-- | thoughts.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/thoughts.html b/thoughts.html new file mode 100644 index 0000000..b024d85 --- /dev/null +++ b/thoughts.html | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | --- | ||
| 2 | layout: index | ||
| 3 | --- | ||
| 4 | |||
| 5 | <h2>Thoughts in microbloging style</h2> | ||
| 6 | {% for post in site.posts %} | ||
| 7 | {% if post.type == "though" %} | ||
| 8 | <article> | ||
| 9 | <div><strong>{{ post.title }}</strong></div> | ||
| 10 | <p><small><i>{{ post.date | date: '%B %d, %Y' }}</i></small></p> | ||
| 11 | <div>{{ post.content }}</div> | ||
| 12 | </article> | ||
| 13 | {% endif %} | ||
| 14 | {% endfor %} | ||
