-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
38 lines (32 loc) · 857 Bytes
/
template.html
File metadata and controls
38 lines (32 loc) · 857 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Admin theme</title>
<link type="text/css" rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="top-bar">
<div class="top-bar-title">Admin theme</div>
<div>
<div class="top-bar-left">
<ul class="menu">
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
<div class="top-bar-right">
<ul class="menu user">
<li><span>User</span></li>
<li><img src="http://via.placeholder.com/45x45" alt="User"></li>
<li><button class="button">Odhlásit se</button></li>
</ul>
</div>
</div>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/what-input/dist/what-input.js"></script>
<script src="js/app.js"></script>
</div>
</body>
</html>