ProjectWIND/webui/index.html

56 lines
2.1 KiB
HTML
Raw Permalink Normal View History

2025-01-02 23:33:16 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wind Chime</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<!-- 左侧导航栏 -->
<aside class="sidebar">
<ul>
<li>日志</li>
<li><a href="account.html">账号设置</a></li>
<li>自定义文字</li>
<li>扩展功能</li>
<li>综合设置</li>
<li>辅助工具</li>
<li><a href="index.html">关于</a></li>
</ul>
</aside>
<!-- 右侧主要内容 -->
<main class="content">
<header>
<h1>Wind Chime</h1>
<p class="version">linux - amd64</p>
<p class="subversion">当前版本: 0.1</p>
<p class="subversion">最新版本: 0.1</p>
</header>
<div class="wind-image">
<img src="image/wind.png" alt="wind Mascot">
</div>
<section class="links">
<p>官网网站: <a href="https://www.sealdice.com" target="_blank">https://www.sealdice.com</a></p>
<p>使用手册: <a href="https://dice.weizaima.com/manual" target="_blank">https://dice.weizaima.com/manual</a></p>
<p>投喂风铃: <a href="https://dice.weizaima.com/feed" target="_blank">https://dice.weizaima.com/feed</a></p>
<p>源码: <a href="https://github.com/sealdice/sealdice-core" target="_blank">https://github.com/sealdice/sealdice-core</a></p>
</section>
<section class="credits">
<h2>感谢 ♪(・ω・)ノ</h2>
<p>特别鸣谢参与测试、反馈问题、帮助完善风铃指令的各位!以下列出感谢名单(排名不分先后)。</p>
</section>
<footer>
<p>V0.1 版本</p>
</footer>
</main>
</div>
</body>
</html>