forked from PragmaCube/PragmaCube.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (113 loc) · 4.18 KB
/
Copy pathindex.html
File metadata and controls
125 lines (113 loc) · 4.18 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE HTML>
<!--
Cours de Programmation by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Cours de C++ pour FRC</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="icon" type="image/svg+xml" href="assets/logotix-2.svg">
</head>
<script src="assets/js/jQuery.js" onload='$.getJSON("https:\\\\api.github.com/repos/PragmaCube/pragmacube.github.io/deployments", function(data) {
date = data[0].updated_at;
document.getElementsByClassName("update")[0].innerText = `Dernière mise à jour le ${String(date).split("T")[0]}`;
});'>
</script>
<body>
<!-- Wrapper -->
<div>
<!-- Header -->
<header id="header">
<h1><a href="hub.html">Formations Stan Robotix</a></h1>
<nav class="links">
<ul>
<li><a href="https://www.firstinspires.org/" target="_blank">FIRST</a></li>
<li><a href="https://robotiquefirstquebec.org/" target="_blank">Robotique FIRST Québec</a></li>
<li><a href="https://stanislas.qc.ca/" target="_blank">Collège Stanislas</a></li>
<li><a href="horaire.html">Horaire</a></li>
</ul>
</nav>
<nav class="main">
<ul>
<li class="menu">
<a style = "margin-top: 25%;" class="fa fa-bars" href="#menu">Menu</a>
</li>
</ul>
</nav>
</header>
<section id="menu">
<!-- Links -->
<section>
<ul class="links">
<li>
<a href="#chapitre1">
<h3>Chapitre 1</h3>
<p>Bases du C++</p>
</a>
</li>
<li>
<a href="#chapitre2">
<h3>Chapitre 2</h3>
<p>Versionnement et électronique</p>
</a>
</li>
<li>
<a href="#chapitre3">
<h3>Chapitre 3</h3>
<p>Programmation FRC</p>
</a>
</li>
<li>
<div class="dropdown">
<details>
<summary class="dropbtn">Documentation</summary>
<div class="dropdown-content">
<ul>
<li style="display: none;"></li>
<li><a href="https://github.wpilib.org/allwpilib/docs/release/cpp/index.html" target="_blank">WPILIB C++ API</a></li>
<li><a href="https://docs.wpilib.org/en/stable/index.html" target="_blank">FRC Control System </a></li>
<li><a href="https://codedocs.revrobotics.com/cpp/index.html" target="_blank">REVLib C++ API</a></li>
<li><a href="https://docs.ctr-electronics.com/" target="_blank">CTRE C++ API</a></li>
</ul>
</div>
</details>
</div>
</li>
</ul>
</section>
</section>
<div style="display: block;margin-left:auto;margin-right: auto;text-align: center;">
<a href="https://www.stanrobotix6622.com/" target="_blank" class="logo"><img style="width: 200px;padding: 10px;" src="assets/logotix-2.svg" alt="" /></a>
<header>
<h2>Formations Stan Robotix</h2>
<p>Modèle basé sur celui des <a href="https://aezurly.github.io/Stan-Robotix-Cours-Webdev/home.html">formations web</a> d'<a href="https://www.linkedin.com/in/alice-vergeau/fr/">Alice</a></p>
</header>
<div class="title">
<h2><a href="design.html">Design</a></h2>
<h2><a href="marketing.html">Marketing</a></h2>
<h2><a href="maths.html">Maths pour FRC</a></h2>
<h2><a href="meca.html">Mécanique</a></h2>
<h2><a href="prog.html">Programmation</a></h2>
</div>
</div>
</div>
<!-- Sidebar -->
<section id="sidebar">
<!-- Intro -->
</section>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<div style="position:fixed;width: 100%;left: 0;bottom:0;text-align: center;">
<p>Fait par Raphaël <div class="update"></div></p>
</div>
</body>
</html>