Lantern_announcement/announcement.html

86 lines
3.5 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>系统公告</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100">
<main class="container mx-auto px-4 py-8">
<h1 class="text-3xl font-bold text-gray-800 mb-6"
aria-label="系统最新公告">
📢 系统公告
</h1>
<div class="bg-white rounded-lg shadow-md p-6">
<ul class="space-y-4">
<li class="border-l-4 border-blue-500 pl-4">
<h2 class="text-xl font-semibold text-gray-700 mb-2">
系统维护通知
</h2>
<p class="text-gray-600 mb-2">
将于2024年6月15日 00:00-04:00进行系统维护期间服务可能中断。
</p>
<time class="text-sm text-gray-500" datetime="2024-06-14">
2024年6月14日
</time>
</li>
<li class="border-l-4 border-green-500 pl-4">
<h2 class="text-xl font-semibold text-gray-700 mb-2">
版本更新公告
</h2>
<p class="text-gray-600 mb-2">
新版本v2.1.0已发布,优化了系统性能并修复了已知问题。
</p>
<time class="text-sm text-gray-500" datetime="2024-06-12">
2024年6月12日
</time>
</li>
<li class="border-l-4 border-yellow-500 pl-4">
<h2 class="text-xl font-semibold text-gray-700 mb-2">
服务器命名规范
</h2>
<p class="text-gray-600 mb-2">
LP名称需使用服务器缩写例如BW服务器应命名为bw
</p>
<time class="text-sm text-gray-500" datetime="2024-06-10">
2024年6月10日
</time>
</li>
<li class="border-l-4 border-purple-500 pl-4">
<h2 class="text-xl font-semibold text-gray-700 mb-2">
OP指令管理
</h2>
<p class="text-gray-600 mb-2">
LP需配置无OP权限指令确保操作权限分离
</p>
<time class="text-sm text-gray-500" datetime="2024-06-08">
2024年6月8日
</time>
</li>
<li class="border-l-4 border-red-500 pl-4">
<h2 class="text-xl font-semibold text-gray-700 mb-2">
数据库安全
</h2>
<p class="text-gray-600 mb-2">
MySQL数据库禁止开启外网访问仅允许内网连接
</p>
<time class="text-sm text-gray-500" datetime="2024-06-05">
2024年6月5日
</time>
</li>
</ul>
</div>
</main>
<!-- 无障碍键盘导航 -->
<script>
document.addEventListener('keydown', (event) => {
if (event.key === 'Enter') {
event.target.click?.();
}
});
</script>
</body>
</html>