mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 13:47:44 +00:00
feat:help
This commit is contained in:
parent
9061bcbaa7
commit
c2aca285cb
6 changed files with 453 additions and 58 deletions
33
resources/help/index.html
Normal file
33
resources/help/index.html
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{{extend defaultLayout}}
|
||||
|
||||
{{block 'css'}}
|
||||
<link rel="stylesheet" href="{{@sys.currentPath}}/index.css">
|
||||
{{/block}}
|
||||
|
||||
{{block 'main'}}
|
||||
<div class="card">
|
||||
<% include(sys.specialTitle, {en: 'HELP' , cn: '绝区零帮助' }) %>
|
||||
{{each helpData help i}}
|
||||
<div class="part">
|
||||
<div class="title">
|
||||
<div class="property {{help.icon}}"></div>
|
||||
<div class="content">{{help.title}}</div>
|
||||
</div>
|
||||
<div class="list">
|
||||
{{each help.items item j}}
|
||||
<div class="item">
|
||||
<div class="name {{item?.needSK ? 'sk' : item?.needCK ? 'ck' : ''}}">{{item.title}}</div>
|
||||
<div class="commands">
|
||||
{{each item.commands command k}}
|
||||
<span class="command">{{command}}</span>
|
||||
{{/each}}
|
||||
</div>
|
||||
<div class="desc">{{item.desc}}</div>
|
||||
</div>
|
||||
{{/each}}
|
||||
</div>
|
||||
</div>
|
||||
{{/each}}
|
||||
|
||||
</div>
|
||||
{{/block}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue