--- 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 -%}
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 %}· {{ postType | replace("s", "") }} {% if post.data.category %} · {% set cats = [] %} {% if post.data.category is string %} {% set cats = [post.data.category] %} {% else %} {% set cats = post.data.category %} {% endif %} {% for cat in cats %} {% if cat != "til" %} #{{ cat }}{% if not loop.last %} {% endif %} {% endif %} {% endfor %} {% endif %}
{{ post.templateContent | striptags | truncate(300) }}
No TIL posts yet. Tag any post with category: til and it will appear here.