-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.html
53 lines (53 loc) · 1.87 KB
/
layout.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="assets/favicon.png" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/dist/themes/light.css">
<script type="module" src="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/dist/shoelace.js"></script>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/color.css" />
<link rel="stylesheet" href="/common.css" />
<link rel="stylesheet" href="/style.css" />
<title>Library</title>
</head>
<body>
<div class="app">
<div class="main-sidebar">
<div class="main-sidebar__top">
<div class="main-sidebar__item active">
<sl-button type="text">
<img src="/assets/home.svg" />
</sl-button>
</div>
<div class="main-sidebar__item">
<sl-button type="text">
<img src="/assets/book.svg" />
</sl-button>
</div>
<div class="main-sidebar__item">
<sl-button type="text">
<img src="/assets/users.svg" />
</sl-button>
</div>
</div>
<div class="main-sidebar__bottom">
<div class="main-sidebar__item">
<sl-button type="text">
<img src="/assets/logout.svg" />
</sl-button>
</div>
</div>
</div>
<div class="content"></div>
</div>
<script src="/scripts.js"></script>
</body>
</html>