-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
63 lines (56 loc) · 2.41 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>{{title}}</title>
<link href="assets/materialize/css/materialize.min.css" rel="stylesheet">
<link href="assets/custom.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/1.0.0/css/flag-icon.min.css" rel="stylesheet">
<style>
body {
background: {{config.style.background.color}};
color: {{config.style.background.text}};
}
.foreground, .side-nav {
background: {{config.style.foreground.color}};
color: {{config.style.foreground.text}};
}
.foreground, .foreground .collapsible-header, .foreground .collapsible-body, .foreground thead {
border-color: {{config.style.foreground.border}};
}
.foreground table.hoverable > tbody > tr:hover, .side-nav li:hover {
background: {{config.style.foreground.hover}};
}
</style>
</head>
<body>
<header>
<nav role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" class="brand-logo thin-text">{{title}}</a>
<ul id="slide-out" class="side-nav fixed">
<li id="logo"><a href="/"><img v-attr="src:config.logoUrl"></a></li>
<sidebar-menu></sidebar-menu>
</ul>
<a id="menu-button" href="#" data-activates="slide-out" class="button-collapse">☰</a>
</div>
</nav>
</header>
<main>
<div class="container">
<div class="row">
<router-view></router-view>
</div>
</div>
</main>
<footer class="page-footer">
<div class="footer-copyright" style="">
<div class="container">
{{config.copyright}} Powered by <a target="_blank" href="https://github.com/lvlup-pro/labtech">Labtech status page</a>
</div>
</div>
</footer>
<script src="build/build.js"></script>
</body>
</html>