优化首页 (#300)
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
neveler 2025-10-19 15:16:34 +08:00 committed by GitHub
parent 137f679406
commit 5cee6ec9d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 38 additions and 25 deletions

19
_layouts/home.html Normal file
View File

@ -0,0 +1,19 @@
---
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 }}

View File

@ -1,31 +1,25 @@
---
layout: home
title: HMCL 新手导航
author: wifi-left
---
## 注意 Notice
<!--{% comment %}-->
> [!NOTE]
> <!--{% endcomment %}-->
> <!----{{ '>' }} **Notice** <br> {{ '<' }}!---->
> The articles were written in Simplified Chinese. If you want to help translate them, please send a pull request to [HMCL-docs/pulls](https://github.com/HMCL-dev/HMCL-docs/pulls). Or you can enable your translation tool to read.\
> If you encounter a BUG, please send feedback in time to [HMCL/issues](https://github.com/HMCL-dev/HMCL/issues).\
> You can also submit your suggestions here.
<!----{{ '>' }}
{: .notice--info }
The articles were written in Simplified Chinese. If you want to help translate them, please send a pull request to [GitHub: HMCL-dev/HMCL-docs](https://github.com/HMCL-dev/HMCL-docs/pulls). Or you can enable your translation tool to read.
If you encounter a BUG, please send feedback in time to [GitHub: huanghongxun/HMCL/issues](https://github.com/HMCL-dev/HMCL/issues).
You can also submit your suggestions here.
如果您遇到 BUG请及时在 [GitHub: huanghongxun/HMCL/issues](https://github.com/HMCL-dev/HMCL/issues) 发送反馈。
您也可以在这里提交您的建议。
{% comment %}
此处的目录从 `_data/navigation.yml` 中的 docs 条目渲染,请修改该文件以更新目录
{% endcomment %}
{% for group in site.data.navigation.docs %}
## {{ group.title }}
{% for item in group.children %}
{{ forloop.index }}. [{{ item.title }}]({{ item.url }})
{%- if item.description %}
{{ item.description }}
{% endif %}
{% endfor %}
{% endfor %}
<!--{% comment %}-->
> [!NOTE]
> <!--{% endcomment %}-->
> <!----{{ '>' }} **注意** <br> {{ '<' }}!---->
> 如果您遇到 BUG请及时在 [HMCL/issues](https://github.com/HMCL-dev/HMCL/issues) 发送反馈。\
> 您也可以在这里提交您的建议。
<!----{{ '>' }}
{: .notice--info }
<!---->