--- layout: default --- {% assign t = site.data.language[page.lang].t %}
{% if site.paginate %} {% assign posts = paginator.posts %} {% else %} {% assign posts = site.posts %} {% endif %}
{% for post in posts %} {% include post-info.html post=post %} {% endfor %}
{% if site.paginate %} {% include paginator.html %} {% endif %}
{% assign _stickies = site.posts | map: "sticky" %}
{% if _stickies contains true %}

{{ t.pinned_articles | default: 'Pinned Articles' }}

    {% assign sticky_index = 0 %} {% for post in site.posts %} {% if post.sticky %} {% assign sticky_index = sticky_index | plus:1 %} {% include trending-article-item.html post=post index=sticky_index %} {% endif %} {% endfor %}
{% endif %} {% if site.tags.size > 0 and site.morph.include.home_tags_bar %} {% assign home_tags_bar = site.morph.include.home_tags_bar %}

{{ home_tags_bar.title | default: 'Top Tags' }}

{{ t.show_more | default: 'show more' }} »

    {% for tag in site.tags limit:12 %}
  • {{ tag[0] }}
  • {% endfor %}
{% endif %} {% if site.categories.size > 0 and site.morph.include.home_categories_bar %} {% assign home_categories_bar = site.morph.include.home_categories_bar %}

{{ home_categories_bar.title | default: 'Top Categories' }}

{{ t.show_more | default: 'show more' }} »

    {% for cate in site.categories limit:10 %}
  • {{ cate[0] }}
  • {% endfor %}
{% endif %}