zhiyu1998 6e4a175d3a 🐞 fix: 修复部分问题
1. 强制更新无法强制问题
2. 帮助页面无法显示版本号
2023-03-12 00:39:27 +08:00

43 lines
1.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="{{pluResPath}}html/help/help.css" />
<link rel="preload" href="{{resPath}}font/tttgbnumber.ttf" as="font" />
<link rel="preload" href="{{pluResPath}}img/bg.jpeg" as="image" />
<link rel="preload" href="{{pluResPath}}img/rank/top.png" as="image" />
<link rel="shortcut icon" href="#" />
</head>
{{@headStyle}}
<body>
<div class="container" id="container">
<div class="head_box">
<div class="id_text">R-Plugin</div>
<h2 class="day_text">使用说明-当前版本v{{version}}</h2>
<img class="genshin_logo" src="{{pluResPath}}img/rank/top.png" />
</div>
{{each helpData val}}
<div class="data_box">
<div class="tab_lable">
{{val.group}}{{val.disable ? ' - 已禁用' : ''}}
</div>
<div class="list">
{{each val.list item}}
<div class="item">
<img class="icon" src="{{pluResPath}}img/icon/{{item.icon}}.png" />
<div class="title">
<div class="text">{{@item.title}}</div>
<div class="dec">{{item.desc}}</div>
</div>
</div>
{{/each}}
</div>
</div>
{{/each}}
<div class="logo">Created By Yunzai-Bot & R-Plugin</div>
</div>
</body>
</html>