mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
35 lines
627 B
HTML
35 lines
627 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<title>Smith</title>
|
|
<style>
|
|
.passed {
|
|
background-color: #8f8;
|
|
color: #000;
|
|
}
|
|
.failed {
|
|
background-color: #f22;
|
|
color: #000;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Smith</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Test</th>
|
|
<th>Result</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
<script src="/jam/require.js"></script>
|
|
<script src="/test.js"></script>
|
|
</body>
|
|
</html>
|