Skip to content

Latest commit

 

History

History
90 lines (65 loc) · 1.4 KB

File metadata and controls

90 lines (65 loc) · 1.4 KB
layout default

Hello!


This is a blog about different software development topics that I find interesting, had a hard time finding exactly what I was looking for, or want to reference later.

I'm Sabrina aka Sab. Hopefully you find some use out of this blog.

Me
{% assign post_count = site.posts | size %} {% if post_count > 0 %}

Recent Posts

{% for post in site.posts limit:4 %}

{{post.excerpt}}

[Read more...]

{% if forloop.last == false %}

{% endif %}

{% endfor %} {% endif %}


All Posts

{% for category in site.categories %}

{% capture category_name %}{{ category | first }}{% endcapture %}

{{category_name}}

{% for post in site.categories[category_name] %}

» {{post.title}}

{% endfor %}

{% endfor %} {% assign drafts_count = site.wip | size %} {% if drafts_count > 0 %}

Ideas

{% for draft in site.wip %}

» {{draft.title}}

{% endfor %}

{% endif %}