尔游网
您的当前位置:首页Jekyll博客搭建小记(附易用模板)_html/css

Jekyll博客搭建小记(附易用模板)_html/css

来源:尔游网


{% for post in tag[1] %}
  • {{ post.title }}
  • {% endfor %} {% endfor %}

    生成归档文章导航:

    {% for post in site.posts %} {% capture ym %} {{ post.date | date:"%Y 年 %m 月" }} {% endcapture %} {% if yearmonth != ym %} {% assign yearmonth = ym %} 
  • {{ ym }}
  • {% endif %}{% endfor %}

    生成归档文章列表:

    {% for post in site.posts %} {% capture ym %}{{ post.date | date:"%Y 年 %m 月" }}{% endcapture %} {% if yearmonth != ym %} {% assign yearmonth = ym %} {{ ym }} {% endif %} 
  • {{ post.title }}
  • {% endfor %}

    强制将内容作为Markdown转换:

    {{ content | markdownify }}

    博文间的前后切换:

    {% if page.previous %} ? 上 ? {{ page.previous.title }}{% else %} ? 上 ? 尽头{% endif %}{% if page.next %} 下 ? {{ page.next.title }} ? {% else %} 下 ? 尽头 ? {% endif %}
    显示全文