Skip to content

Latest commit

 

History

History
56 lines (47 loc) · 1.38 KB

index.md

File metadata and controls

56 lines (47 loc) · 1.38 KB
layout title
page
Homepage

测试修改

    {% for post in paginator.posts %} {% capture y %}{{post.date | date:"%Y"}}{% endcapture %} {% if year != y %} {% assign year = y %}
  • {{ y }}
  • {% endif %}
  • {{ post.date | date:"%Y-%m-%d" }} {{ post.title }}
  • {% endfor %}

{% if paginator.previous_page %} {% if paginator.previous_page == 1 %} <前页 {% else %} <前页 {% endif %} {% else %} <前页 {% endif %}

  {% if paginator.page == 1 %}
  <span class="current-page">1</span>
  {% else %}
  <a href="/">1</a>
  {% endif %}

{% for count in (2..paginator.total_pages) %}
  {% if count == paginator.page %}
  <span class="current-page">{{count}}</span>
  {% else %}
  <a href="/page{{count}}">{{count}}</a>
  {% endif %}
{% endfor %}

{% if paginator.next_page %} 后页> {% else %} 后页> {% endif %} (共{{ paginator.total_posts }}篇)