mirror of
https://github.com/ZeroCatDev/ClassworksKV.git
synced 2025-08-31 20:39:22 +00:00
36 lines
795 B
Plaintext
36 lines
795 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>
|
|
<%= readmeValue.title || "Classworks 服务端" %>
|
|
</title>
|
|
<style>
|
|
body {
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.readme-content {
|
|
background-color: #f5f5f5;
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>
|
|
<%= readmeValue.title || "Classworks 服务端" %>
|
|
</h1>
|
|
|
|
<div class="readme-content">
|
|
<pre><%= readmeValue.readme %></pre>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |