HMCL-docs/_layouts/changelog.html
neveler 69179534e0
All checks were successful
continuous-integration/drone/push Build is passing
优化更新日志 (#360)
2025-12-03 16:13:44 +08:00

14 lines
440 B
HTML

---
layout: document
---
{{ content }}
{% assign channel = page.channel | default: 'stable' %}
{% assign changelogs = site.changelogs | where: "channel", channel | 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 %}