layout | title | permalink |
---|---|---|
blog-list |
Tech |
/blog/tech/ |
{% for post in site.categories.Tech %}
{% 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 %}