--- layout: default ---
Show All {{site.posts.size}} {% capture tags %} {% for tag in site.tags %} {{ tag[0] }} {{tag[1].size}} {% endfor %} {% endcapture %} {{ tags | split:'' | sort | join:'' }}
{%- assign _sorted_list = site.posts | where: "layout","post"-%} {%- assign _sorted_list = _sorted_list | sort: 'date' -%} {%- assign _sorted_list = _sorted_list | reverse -%} {%- for _article in _sorted_list -%} {%- assign _tags = '' -%} {%- for _tag in _article.tags -%} {%- assign _tag_encode = _tag | strip | url_encode -%} {%- if forloop.last -%} {%- assign _tags = _tags | append: _tag_encode -%} {%- else -%} {%- assign _tags = _tags | append: _tag_encode | append: ',' -%} {%- endif -%} {%- endfor -%} {% comment %} group by year {% endcomment %} {%- assign _currentdate = _article.date | date: '%Y' -%} {%- if _currentdate != _date -%} {%- unless forloop.first -%}{%- endunless -%}

{{ _currentdate }}

{%- assign _date = _currentdate -%} {%- endif -%}

{{ _article.title }}

{% if _article.subtitle %}

{{ _article.subtitle }}

{% endif %}

{% endfor %}