-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (37 loc) · 1.84 KB
/
Copy pathindex.html
File metadata and controls
48 lines (37 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FileManagerJS</title>
<!--- Load in JQuery --->
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!--- Load in the File Manager CSS file -->
<link rel="stylesheet" type="text/css" href="./style.css">
<!--- Load in HomeJS -->
<script defer type="text/javascript" src='libraryCode/home.js'></script>
<!--- Load in FileManagerJS -->
<script defer type="text/javascript" src='libraryCode/FileManager.js'></script>
</head>
<body>
<div class='navBar'>
<ul>
<li ><a href='index.html'><span class="Logo">FileManagerJS</span></a></li>
<li><a href='documentationPages/gettingStarted.html'><span>Getting Started</span></a></li>
<li><a href='documentationPages/apiPage.html'><span>API Page</span></a></li>
<li><a href='documentationPages/explanationUI.html'><span>Explaination of the UI</span></a></li>
<li><a href='examplePages/exampleCloudStorage.html'><span>Cloud Storage Example</span></a></li>
<li><a href='examplePages/exampleSourceControl.html'><span>Source Control Example</span></a></li>
<li><a href='https://github.com/csc309-fall-2020/js-library-gaozi2'><span>GitHub</span></a></li>
</ul>
</div>
<div class="cardLayout2">
<h3 class="defaultHeader">Main Example</h3>
<p class="defaultParagraph">This example features all functionality and user interaction components found in the FileManagerJS library.</p>
</div>
<!--- Load in an example Files -->
<script defer type="text/javascript" src='examplesJSFiles/example.js'></script>
<!--- Load in an example Picture -->
<script defer type="text/javascript" src='examplesJSFiles/examplePicture.js'></script>
</body>
</html>