HMCL-docs/_layouts/changelog.html
neveler 74e03cc184
All checks were successful
continuous-integration/drone/push Build is passing
添加自定义过滤器以按版本号排序字符串 (#388)
2026-01-01 16:36:47 +08:00

14 lines
463 B
HTML

---
layout: document
---
{{ content }}
{% assign channel = page.channel | default: 'stable' %}
{% assign changelogs = site.changelogs | where: "channel", channel | version_sort: "slug" | reverse %}
{% for item in changelogs %}
{% assign version = item.slug %}
<h1 id="{% if forloop.index == 1 %}nowchange{% else %}HMCL-{{ version }}{% endif %}" data-version="{{ version }}">HMCL {{ version }}</h1>
<div>{{ item.content | markdownify }}</div>
{% endfor %}