31 lines
744 B
HTML
31 lines
744 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Locutus</title>
|
|
<meta charset="UTF-8"/>
|
|
<link rel="stylesheet" href="/res/styles/styles.css" type="text/css"/>
|
|
<script src="/res/js/locutus.js" type="text/javascript"></script>
|
|
<style type="text/css">
|
|
html {
|
|
height: 100%;
|
|
text-family: 'Arial', sans-serif;
|
|
}
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
noscript {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
Your browser either does not support JavaScript or has disabled script execution.<br/>
|
|
Locutus needs JavaScript to be enabled.
|
|
</noscript>
|
|
<main id="locutus">
|
|
</main>
|
|
</body>
|
|
</html>
|