-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
227 lines (214 loc) · 7.82 KB
/
index.html
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!DOCTYPE HTML>
<html>
<head>
<title>Portfolio</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" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Sidebar -->
<section id="sidebar">
<div class="inner">
<nav>
<ul>
<li><a href="#intro">Welcome</a></li>
<li><a href="#one">Skills</a></li>
<li><a href="#two">Project Portfolio</a></li>
<li><a href="#three">Contact Me</a></li>
</ul>
</nav>
</div>
</section>
<!-- Wrapper -->
<div id="wrapper">
<!-- Intro -->
<section id="intro" class="wrapper style1 fullscreen fade-up">
<div class="inner">
<h1>Jay-Ar Brouillard</h1>
<h3>Entry Level Software Engineer</h3>
</div>
</section>
<!-- One -->
<section id="one" class="wrapper style3 fade-up">
<div class="inner">
<h2>Skills</h2>
<p>Back end development focus with full stack experience.</p>
<div class="features">
<section>
<span class="icon solid major fa-code"></span>
<h3>Front End</h3>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Vue</li>
</ul>
</section>
<section>
<span class="icon solid major fa-server"></span>
<h3>Back End</h3>
<ul>
<li>Java</li>
<li>Python</li>
</ul>
</section>
<section>
<span class="icon solid major fa-database"></span>
<h3>Database</h3>
<ul>
<li>MySql</li>
<li>Oracle</li>
<li>PostgresSQL</li>
<li>SQLite</li>
</ul>
</section>
<section>
<span class="icon solid major fa-cloud"></span>
<h3>CI/CD, Release Automation, Issue Tracking</h3>
<ul>
<li>FlexDeploy</li>
<li>Git</li>
<li>Jira</li>
</ul>
</section>
</div>
</div>
</section>
<!-- Two -->
<section id="two" class="wrapper style2 spotlights">
<section>
<img id="sorterImg" class="image" src="sorter.png" data-position="center center"/>
<!-- Sorter Modal -->
<div id="myModal1" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01">
<div id="caption1">Merge Sort Algorithm Visualized</div>
</div>
<div class="content">
<div class="inner">
<h2>Sorting Visualizer</h2>
<p>Interactive and visual representatation of various sorting algorithms. Some of the sorts implemented include QuickSort, MergeSort, and Cocktail Sort.</p>
<ul>
<li>HTML, CSS, JavaScript</li>
</ul>
<ul class="actions">
<li><a href="https://github.com/Jay-ArBrouillard/sorting-visualizer" target="_blank" class="button">Source Code</a></li>
<li><a href="http://jayarbrouillard.com/sorting-visualizer" target="_blank" class="button">Try it out!</a></li>
</ul>
</div>
</div>
</section>
<section>
<img id="dragonCaptureImg" class="image" src="dragonCapture.png" alt="Dragon Capture" data-position="center center"/>
<!-- Dragon Capture Modal -->
<div id="myModal2" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img02">
<div id="caption2"></div>
</div>
<div class="content">
<div class="inner">
<h2>Dragon Capture</h2>
<p>Interactive 3D WebGL game based around soccer and capture the flag. Objective, rules, and instructions can be found with the source code.</p>
<ul>
<li>HTML, CSS, JavaScript, WebGL</li>
</ul>
<ul class="actions">
<li><a href="https://github.com/Jay-ArBrouillard/dragon-capture" target="_blank" class="button">Source Code</a></li>
<li><a href="http://jayarbrouillard.com/dragon-capture/" target="_blank" class="button">Try it out!</a></li>
</ul>
</div>
</div>
</section>
<section>
<!-- <a href="#" class="image"><img src="images/pic03.jpg" alt="" data-position="25% 25%" /></a> -->
<div class="content">
<div class="inner">
<h2>Lifting Goals Workout Logger</h2>
<p>Simple and efficient Android Mobile App to track your workouts and progress in the gym. Contains functionality for organizing your workouts into groups of routines, looking at past history, GPS based gym locator, and ability to export workout data to a csv file for analysis.</p>
<ul>
<li>Android Studio, Java, Sqlite, PHP</li>
</ul>
<ul class="actions">
<li><a href="https://github.com/Jay-ArBrouillard/AndroidLiftingGoals" target="_blank" class="button">Source Code</a></li>
</ul>
</div>
</div>
</section>
</section>
<script>
// Get the modals
var sorterModal = document.getElementById("myModal1");
var dragonModal = document.getElementById("myModal2");
// Modal 1
var img1 = document.getElementById("sorterImg");
var modalImg1 = document.getElementById("img01");
img1.onclick = function(){
sorterModal.style.display = "block";
modalImg1.src = this.src;
}
var span1 = document.getElementsByClassName("close")[0];
span1.onclick = function() {
sorterModal.style.display = "none";
}
//Modal 2
var img2 = document.getElementById("dragonCaptureImg");
var modalImg2 = document.getElementById("img02");
img2.onclick = function(){
dragonModal.style.display = "block";
modalImg2.src = this.src;
}
var span2 = document.getElementsByClassName("close")[1];
span2.onclick = function() {
dragonModal.style.display = "none";
}
</script>
<!-- Three -->
<section id="three" class="wrapper style1 fade-up">
<div class="inner">
<h2>Contact Me</h2>
<p>If you have any questions or concerns feel free to contact me at the below email.</p>
<div>
<section>
<ul class="contact">
<li>
<h3>Location</h3>
<span>Little Chute, WI</span>
</li>
<li>
<h3>Email</h3>
<a href="#">[email protected]</a>
</li>
<li>
<h3>Social</h3>
<ul class="icons">
<li><a href="https://github.com/Jay-ArBrouillard" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
<li><a href="https://www.linkedin.com/in/jay-ar-brouillard/" class="icon brands fa-linkedin-in"><span class="label">LinkedIn</span></a></li>
</ul>
</li>
</ul>
</section>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer" class="wrapper style1-alt">
<div class="inner">
<ul class="menu">
<li>© Site By Jay-Ar Brouillard. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.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>
</body>
</html>