mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
36 lines
931 B
HTML
36 lines
931 B
HTML
{{extend defaultLayout}}
|
|
|
|
{{block 'css'}}
|
|
<link rel="stylesheet" type="text/css" href="{{_res_path}}/help/index.css"/>
|
|
{{@style}}
|
|
{{/block}}
|
|
|
|
{{block 'main'}}
|
|
<div class="info-box">
|
|
<div class="head-box type{{bgType}}">
|
|
<div class="title">{{helpCfg.title||"使用帮助"}}</div>
|
|
<div class="label">{{helpCfg.subTitle || "Yunzai-Bot & Miao-Plugin"}}</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{each helpGroup group}}
|
|
<div class="cont-box">
|
|
<div class="help-group">{{group.group}}</div>
|
|
<div class="help-table">
|
|
{{each group.list help idx}}
|
|
{{if idx%3 == 0}}
|
|
<div class="tr">
|
|
{{/if}}
|
|
<div class="td">
|
|
<span class="help-icon" style="{{help.css}}"></span>
|
|
<strong class="help-title">{{help.title}}</strong>
|
|
<span class="help-desc">{{help.desc}}</span>
|
|
</div>
|
|
{{if idx%3 ==2 || idx == group.list.length -1}}
|
|
</div>
|
|
{{/if}}
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
{{/each}}
|
|
{{/block}} |