forked from anistuhin/pathwise
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
114 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
(function($) { | ||
// global variables | ||
|
||
$(document).ready(function() { | ||
// code executions | ||
name(); | ||
// event listeners | ||
$(document).on('click', 'selector', function() { | ||
|
||
}); | ||
}); | ||
|
||
// all the function definitions | ||
function name() { | ||
|
||
} | ||
})(window.jQuery); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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>Profile@gmail.com</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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters