22 lines
537 B
HTML
22 lines
537 B
HTML
<!doctype html>
|
|
<html lang="zh-Hans-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="shortcut icon" href="/noto--dog-face.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>判题狗</title>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
<script>
|
|
window.localStorage.setItem("maxkbMaskTip", true)
|
|
</script>
|
|
<script
|
|
async
|
|
defer
|
|
src="<%= process.env.PUBLIC_MAXKB_URL %>"
|
|
></script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
</html>
|