--- layout: default title: Blog ---

// Blog Posts

{% for post in site.posts %}
[{{ post.date | date: "%Y-%m-%d" }}] // {{ post.title }}
{% if post.categories %}
{% for category in post.categories %} {{ category }} {% unless forloop.last %}, {% endunless %} {% endfor %}
{% endif %}
{% if post.description %}

{{ post.description }}

{% endif %}
$ read more → {% if post.tags %}
{% for tag in post.tags %} #{{ tag }} {% endfor %}
{% endif %}
{% endfor %}