-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloud_admin.html
87 lines (72 loc) · 2.83 KB
/
cloud_admin.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="css/styles.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<!-- Navbar goes here -->
<!-- Page Layout here -->
<nav class="nav-extended light-blue">
<div class="nav-wrapper">
<a href="#" class="brand-logo"> <img src="images/clouds_logo.svg" class="responsive-img logo mar5top" width="100px" height="30px"/></a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="#">Link1</a></li>
<li><a href="#">Link2</a></li>
<li><a href="#">Link3</a></li>
</ul>
<ul class="side-nav" id="mobile-demo">
<li><a href="sass.html">Sass</a></li>
<li><a href="badges.html">Components</a></li>
<li><a href="collapsible.html">JavaScript</a></li>
</ul>
</div>
<div class="nav-content">
<ul class="tabs tabs-transparent">
<li class="tab"><a class="active" href="#events">Events</a></li>
<li class="tab"><a href="#results">Results</a></li>
<li class="tab"><a href="#gallery">Gallery</a></li>
<li class="tab"><a href="#notify">Notifications</a></li>
</ul>
</div>
</nav>
<div id="events" class="col s12">
<div class="hero white">
<!-- this should be blank -->
</div>
<!-- Page Layout here -->
<div class="row">
<div class="col s12 m4 l3">
<div class="collection">
<a href="#!" class="collection-item">Alvin</a>
<a href="#!" class="collection-item active">Alvin</a>
<a href="#!" class="collection-item">Alvin</a>
<a href="#!" class="collection-item">Alvin</a>
</div>
</div>
<div class="col s12 m8 l9"> <!-- Note that "m8 l9" was added -->
<!-- Teal page content
This content will be:
9-columns-wide on large screens,
8-columns-wide on medium screens,
12-columns-wide on small screens -->
</div>
</div>
</div>
<div id="results" class="col s12">
</div>
<div id="gallery" class="col s12">
</div>
<div id="notify" class="col s12">
</div>
</body>
</html>