-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelements_home.html
More file actions
89 lines (64 loc) · 2.57 KB
/
elements_home.html
File metadata and controls
89 lines (64 loc) · 2.57 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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">-->
<!-- <link rel="stylesheet" href="https://cdn.rawgit.com/twbs/bootstrap/48938155eb24b4ccdde09426066869504c6dab3c/dist/css/bootstrap.min.css">-->
<link rel="stylesheet" type="text/css" href="vendors/css/ionicons.min.css">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,300i,400,700" rel="stylesheet">
<link rel="stylesheet" href="resources/css/elements_home.css">
<title>RateIT</title>
</head>
<body>
<header class="user-panel">
<ul>
<li><div id="user_info" class="user-info"></div></li>
<li><input type="button" id="log_out" class="btn user-logout" value="Sign Out" /></li>
</ul>
</header>
<input type="button" id="go_to_top" class="btn top-btn" value="^">
<nav id="sidenav">
<ul class="nav-items">
<li>
<a id="home" href="#">
<i class="icon ion-home"></i>
<span>Home</span>
</a>
</li>
<li>
<a id="create_board" href="#">
<i class="icon ion-chatboxes"></i>
<span>New messaging board</span>
</a>
</li>
<li>
<a id="create_element" href="#">
<i class="icon ion-film-marker"></i>
<span>New movie page</span>
</a>
</li>
<li>
<a id="board" href="#">
<i class="icon ion-chatbox-working"></i>
<span>Show messaging board</span>
</a>
</li>
<li>
<a id="all" href="#">
<i class="icon ion-ios-film"></i>
<span>All movies</span>
</a>
</li>
<li>
<a id="distance_filter" href="#">
<i class="icon ion-qr-scanner"></i>
<span>Search by distance</span>
</a>
</li>
</ul>
</nav>
<div class="container"></div>
<script src="elements_home.bundle.js"></script>
</body>
<html>