| layout | title | permalink | order |
|---|---|---|---|
blog-list |
Blog |
/blog/ |
3 |
{% for post in site.posts %}
{% endfor %}
{% assign current_year = 'now' | date: "%Y" %}
{% assign post_year = post.date | date: "%Y" %}
{% if post_year == current_year %} {{ post.date | date: "%b %-d"}} {% else %} {{ post.date | date: "%b %-d, %Y"}} {% endif %}
{{ post.content | strip_html | truncatewords:40 }}
{% assign category_count = post.categories | size %} {% if category_count != 0 %}
{% for category in post.categories %}
{{ category }}
{% endfor %}