layout | title | |
---|---|---|
home_page |
|
打卡文件汇总
算法笔记
打卡文件生成器
即时预览编辑器
{% assign new_posts = site.posts | slice: 0, 5 %}
{% assign c = 0 %}
{% for p in new_posts %}
{% if p.Author == empty %}
{% assign author = p.Author %}
{% else %}
{% assign author = "undefined" %}
{% endif %}
{% unless c == 0 %}
{% else %}
{% endunless %}
{% assign c = c | plus: 1 %}
{% endfor %}
{% if p.Author != nil %} {% include fn/icon.html type="people" size="1.5rem" %} {{ p.Author | join: ', '}} | {% endif %} {% include fn/icon.html type="calander" size="1.5rem" %} {{ p.date | date_to_string }}
{{ p.content | strip_html | escape | slice: 0, 200 }} ...