site/til.html

22 lines
735 B
HTML

---
layout: default
title: TILs
permalink: /til/
backlink: true
---
My collection of TILs (Today-I-Learned). I use this mainly to collect solutions to weird errors I have faced, and detail the little projects that I work on. This has its own atom feed (above) as they are typically very different from my other posts. All TILs are blog posts but not all blog posts are TILs.<br>
--<br>
<a href="/feed/til.xml">rss</a><br>
<br>
<hr>
<ul style="list-style-type:none;margin:0;padding:0;">
{% for post in site.posts %}
{% assign category = post.category %}
{% if category == 'til' %}
<li>
<p><a href="{{ post.url }}">{{ post.title }}</a> -- {{ post.date | date_to_string }}</p>
</li>
{% endif %}
{% endfor %}
</ul>