-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (62 loc) · 2.44 KB
/
Copy pathindex.html
File metadata and controls
66 lines (62 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FRC 6498 Programming</title>
<link href="index.css" rel="stylesheet">
<link href="css/dropdown.css" rel="stylesheet">
<link href="css/colors.css" rel="stylesheet">
</head>
<body>
<div class="header">
<img src="" alt="FRC6498">
<h1>FRC6498 Programming</h1>
<div> </div>
</div>
<div class="sidebar">
<div class="sidebarHeader"></div>
<div class="dropdown">
<button class="dropbtn">Git</button>
<div class="dropdown-content">
<a href="Git/Git-Repos.html">Repositories</a>
<a href="Git/Repo-Write.html">Writing to a Repository</a>
<a href="Git/Branches.html">Branches</a>
<a href="Git/Merge.html">Merging Branches</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Github</button>
<div class="dropdown-content">
<a href="Github/Remote-Repos.html">Remote Repositories</a>
<a href="Github/Pull-Requests.html">Pull Requests</a>
<a href="Github/Branch-Rulesets.html">Branch Rulesets</a>
<a href="Github/Github-Actions.html">Github Actions</a>
<a href="Github/Github-CLI.html">Github CLI</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Hardware Configuration</button>
<div class="dropdown-content">
<a href="Hardware Configuration/Swerve/Swerve-Configuration.html">Swerve</a>
<a href="Hardware Configuration/Radio-Configuration.html">Radio</a>
<a href="Hardware Configuration/RoboRio-Configuration.html">RoboRio</a>
<a href="Hardware Configuration/Vision/Limelight-Configuration.html">Limelight</a>
<a href="Hardware Configuration/Vision/Orangepi-Photon-Configuration.html">orangepi/photonVision</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Advanced WPI</button>
<div class="dropdown-content">
<a href="Advanced WPI/Motion-Profiles.html">Motion Profiles</a>
<a href="Advanced WPI/Pose-Estimation.html">Pose Estimation</a>
<a href="Advanced WPI/Trajectory-Generation.html">Trajectory Generation</a>
<a href="Advanced WPI/Sysid.html">SysID</a>
</div>
</div>
</div>
<div class="main">
<!--maybe put a cool picture here-->
</div>
</body>
</html>