-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathindex.html
55 lines (55 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Electron & Vue.js</title>
<link rel="stylesheet" href="/assets/css/photon.css">
<style type="text/css">
a {
text-decoration: none;
color: #4285f4;
}
.nav-group-item .icon {
color: wheat;
}
.nav-group-item:active, .nav-group-item.active {
background-color: #4285f4;
}
.sidebar a {
color: wheat;
}
.sidebar {
background: #334;
width: 23%;
}
.container {
background-color: #fff;
}
</style>
</head>
<body>
<div id="app">
<div class="window">
<div class="window-content">
<div class="pane-group">
<div class="pane-sm sidebar">
<nav class="nav-group">
<h5 class="nav-group-title">Favorites</h5>
<router-link class="nav-group-item" to="/"><span class="icon icon-home"></span> Home</router-link>
<router-link class="nav-group-item" to="/contacts"><span class="icon icon-users"></span> Contacts</router-link>
<router-link class="nav-group-item" to="/music"><span class="icon icon-note-beamed"></span> Play</router-link>
</nav>
</div>
<div class="pane container" style="padding: 10px;">
<router-view></router-view>
</div>
</div>
</div>
<footer class="toolbar toolbar-footer">
<h1 class="title">Made by <a href="http://www.sohelamin.com" target="_blank">Sohel Amin</a></h1>
</footer>
</div>
</div>
<script src="/dist/build.js"></script>
</body>
</html>