wiki/_includes/update-history.md

15 lines
418 B
Markdown
Raw Normal View History

2017-12-02 02:04:52 -08:00
{% comment %}
引数:
limit: 表示する日付数
2017-12-02 02:04:52 -08:00
{% endcomment %}
{% assign groups = site.pages | where_exp: "item", "item.date != null" | group_by: "date" | sort: "name" | reverse %}
{% for group in groups limit: include.limit %}
<p>
<strong>{{ group.name | date: "%Y-%m-%d" }}</strong>
{% for item in group.items %}
<br><a href="{{ item.url }}">{{ item.title }}</a>
2017-12-02 02:04:52 -08:00
{% endfor %}
</p>
2017-12-02 02:04:52 -08:00
{% endfor %}