zhenxun_bot/resources/template/menu/zhenxun_menu.html
2023-02-09 21:59:40 +08:00

58 lines
2.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 lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>zhenxun_menu</title>
<link rel="stylesheet" href="./res/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="zhenxun_menu.css">
</head>
<body>
<header></header>
<div class="transition"></div>
<div class="wrapper">
<main class="des">
<p>可以通过 ‘帮助[功能名称] 来获取对应功能的使用方法。</p>
<p style="color:red;">注:横线字功能被群管理员禁用,浅色字代表功能正在维护&nbsp;&nbsp;&nbsp;&nbsp;真寻机器人免费开源,如果你在任何渠道付费购买了真寻机器人,请退款。</p>
</main>
<div class="content">
{% for plugin in plugin_list %}
<div style="--themebordercolor:#ddc871;--themebgcolor:#ddc8710a;--pluginbgcolor:#ddc8715c;">
<div>
<span>
<!-- 图标 -->
<i class="{{plugin.icon}}"></i>
<!-- 插件种类名 -->
{{plugin.name}}
</span>
<!-- 真寻表情包图片 -->
<div class="logo">
<img src="{{plugin.logo}}" alt="">
</div>
</div>
{% for item in plugin['items'] %}
{% if item.sta == 0 %}
<span>
{{item.plugin_name}}
<div class="splic"></div>
</span>
{% elif item.sta == 1 %}
<span>
<del>{{item.plugin_name}}</del>
<div class="splic"></div>
</span>
{% else %}
<span class="ban">
{{item.plugin_name}}
<div class="splic"></div>
</span>
{% endif %}
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</body>
<script type="text/javascript" src="zhenxun_menu.js"></script>
</html>