生成归档文章导航:
{% for post in site.posts %} {% capture ym %} {{ post.date | date:"%Y 年 %m 月" }} {% endcapture %} {% if yearmonth != ym %} {% assign yearmonth = ym %} 生成归档文章列表:
{% for post in site.posts %} {% capture ym %}{{ post.date | date:"%Y 年 %m 月" }}{% endcapture %} {% if yearmonth != ym %} {% assign yearmonth = ym %} {{ ym }} {% endif %} 强制将内容作为Markdown转换:
{{ content | markdownify }} 博文间的前后切换:
{% if page.previous %} ? 上 ? {{ page.previous.title }}{% else %} ? 上 ? 尽头{% endif %}{% if page.next %} 下 ? {{ page.next.title }} ? {% else %} 下 ? 尽头 ? {% endif %}