mirror of
https://gitee.com/huanghongxun/HMCL-docs.git
synced 2025-11-05 05:34:25 +08:00
20 lines
369 B
HTML
20 lines
369 B
HTML
---
|
|
layout: document
|
|
---
|
|
|
|
{{ content }}
|
|
|
|
{% capture list %}
|
|
{% for group in site.data.navigation.docs -%}
|
|
## {{ group.title }}
|
|
{% for item in group.children -%}
|
|
1. [{{ item.title }}]({{ item.url | relative_url }})
|
|
{%- if item.description %}\
|
|
{{ item.description }}
|
|
{%- endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endcapture %}
|
|
|
|
{{ list | markdownify }}
|