29 lines
731 B
Handlebars
29 lines
731 B
Handlebars
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>{{ title }}</title>
|
||
|
<link rel="stylesheet" href="{{ css }}">
|
||
|
</head>
|
||
|
<body class="{{ theme }}">
|
||
|
<header>
|
||
|
<h1>{{ header }}</h1>
|
||
|
<h3>Main menu</h3>
|
||
|
</header>
|
||
|
|
||
|
<div class="content">
|
||
|
<p class="message success"></p>
|
||
|
<button id="current">Current Skin</button><br>
|
||
|
<button id="upload">Upload Skin</button><br>
|
||
|
<button id="random">Random Skin</button><br>
|
||
|
<button id="logout">Logout</button>
|
||
|
</div>
|
||
|
|
||
|
<script src="../src/main.js"></script>
|
||
|
|
||
|
<footer>
|
||
|
{{ footer }}
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|