--- layout: layouts/base.njk title: Today I Learned withSidebar: true permalink: /til/ eleventyImport: collections: - posts --- {%- set tilPosts = [] -%} {%- for post in collections.posts -%} {%- if post.data.category -%} {%- if post.data.category is string -%} {%- if post.data.category == "til" -%} {%- set tilPosts = (tilPosts.push(post), tilPosts) -%} {%- endif -%} {%- else -%} {%- if "til" in post.data.category -%} {%- set tilPosts = (tilPosts.push(post), tilPosts) -%} {%- endif -%} {%- endif -%} {%- endif -%} {%- endfor -%}

Today I Learned

A collection of concise write-ups on small things I’ve learnt day to day. ({{ tilPosts.length }} post{% if tilPosts.length != 1 %}s{% endif %})

{% if tilPosts.length > 0 %} {% else %}

No TIL posts yet. Tag any post with category: til and it will appear here.

{% endif %}