HMCL-docs/_layouts/changelog.html
Glavo 4597954052
All checks were successful
continuous-integration/drone/push Build is passing
调整更新日志页面 (#317)
2025-11-02 20:24:55 +08:00

12 lines
456 B
HTML

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