33 lines
688 B
HTML
33 lines
688 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>LocalhostBunny</title>
|
||
|
|
||
|
<link rel="shortcut icon" href="/favicon.ico" />
|
||
|
<link rel="stylesheet" type="text/css" href="/css/reset.css" />
|
||
|
<link rel="stylesheet" type="text/css" href="/css/fonts.css" />
|
||
|
<link rel="stylesheet" type="text/css" href="/css/styles.css" />
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<main>
|
||
|
|
||
|
<h1>LocalHostBunny</h1>
|
||
|
|
||
|
<div id="maincontent">
|
||
|
|
||
|
</div>
|
||
|
</main>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
const servers = {{ listServers | json_indent | safe_js }};
|
||
|
</script>
|
||
|
|
||
|
<script type="text/javascript" src="/scripts/script.js"></script>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|