-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththoughts.html
More file actions
25 lines (22 loc) · 968 Bytes
/
thoughts.html
File metadata and controls
25 lines (22 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
title: Thoughts
layout: default
---
<h2>Thoughts</h2>
This section of my blog is not so much about finished projects, but rather about some ideas that popped into my mind.
Some of them might lead to a project, but for most of them, I don't have the time or resources to work on them, or they're just better implemented by someone with the necessary experience.
They are ideas that I used to keep in my personal notebook, but publishing them allows others to criticize them or to start a project of their own.
Above all, I hope for these ideas to be a source of inspiration.
<h2></h2>
<div class="bigpostlist">
<ul>
{% for post in site.categories.thoughts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<br>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<br><br>
</li>
{% endfor %}
</ul>
</div>