forked from anistuhin/pathwise
-
Notifications
You must be signed in to change notification settings - Fork 1
/
skeleton.htm
57 lines (54 loc) · 2.05 KB
/
skeleton.htm
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Pathwise</title>
<link rel="stylesheet" type="text/css" href="assets/styles-working.css" />
<!-- Create your isolated CSS file -->
<link rel="icon" type="image/x-icon" href="assets/icons/favicon.png" />
</head>
<body class="student-facing student-robot-facing">
<nav id="primary-nav">
<!-- Navigation -->
<div class="container">
<div class="brand">PATHWiSE</div>
<div id="nav-right">
<div id="user-profile">
<div id="user-profile-menu">
<!-- class="temporary-hidden" -->
<div id="user-profile-menu-top">
<div id="user-profile-menu-icon"></div>
<div id="user-profile-menu-details">
<div id="user-profile-menu-header" style="font-weight: bold">
Profile Name
</div>
<p>[email protected]</p>
<p>User</p>
</div>
</div>
<ul>
<li>Dashboard</li>
<li>Settings</li>
<li id="logout">Logout</li>
</ul>
</div>
</div>
</div>
</div>
</nav>
<main data-comments="1" data-comments-toggle="1">
<div class="container">
<div id="main-content-wrapper">
<!-- main content start -->
<div id="main-content">
</div>
<!-- main content -->
</div>
</div>
</main>
<script type="text/javascript" src="assets/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="assets/skeleton.js"></script>
<!-- Create your isolated JS file -->
</body>
</html>