mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 14:31:44 +01:00
21 lines
643 B
HTML
21 lines
643 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Dozzle</title>
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono|Gafata" rel="stylesheet" />
|
|
<link rel="manifest" href="manifest.webmanifest" />
|
|
<link href="styles.scss" rel="stylesheet" />
|
|
<script>
|
|
window["BASE_PATH"] = "{{ .Base }}";
|
|
</script>
|
|
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
|
|
</head>
|
|
|
|
<body class="is-dark">
|
|
<div id="app"></div>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|