-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.old.html
319 lines (311 loc) · 9.78 KB
/
index.old.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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="hZiGooAl8ksSV9S9GpxZ9kKx48lJcmWN9MgUgczamk0" />
<title>EvanG</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="styles/style.css">
<link rel="icon" type="image/png" href="images/profile.png" />
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<script src="https://kit.fontawesome.com/83da1b8f9f.js" crossorigin="anonymous"></script>
<!-- Themes -->
<link id="css-theme" rel="stylesheet" href="styles/dark.css" disabled>
<script>
$(document).ready(function() {
$("#theme").click(function (){
$isLight = $("#theme").hasClass("light");
changeTheme($isLight ? "dark" : "light");
});
$theme = getCookie("theme");
changeTheme($theme == "" ? "light" : $theme);
});
function changeTheme($theme){
$("#theme").removeClass();
$("#theme").addClass($theme);
$('#css-theme').prop("disabled", $theme == "light");
document.cookie = "theme=" + $theme;
}
function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for(var i = 0; i <ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
</script>
<style>
#theme{
position: fixed;
top: 5px;
right: 10px;
font-size: 1.5em;
z-index: 999;
}
#theme.light .fa-sun{ display: none; }
#theme.dark .fa-moon{ display: none; }
.container.is-fluid {
padding-bottom: 1.5em;
}
</style>
<!-- Fold/Unfold -->
<script>
$(document).ready(function() {
$('section.container h3').click(function() {
$content = $(this).siblings('.is-ancestor');
if($content.is(":hidden")) {
$content.slideDown();
$(this).removeClass('hidden');
}
else {
$content.slideUp();
$(this).addClass('hidden');
}
});
});
</script>
</head>
<body>
<a id="theme" class="light">
<i class="fas fa-moon"></i>
<i class="fas fa-sun"></i>
</a>
<section class="hero is-light">
<div class="hero-body">
<div class="container is-fluid">
<div id="profile" class="head">
<img src="images/profile.png" style="border-radius: 50%; width: 90px; height: 90px;" />
<div>
<h1 class="title">EvanG</h1>
<h2 class="subtitle">
C# and web developer<br/>
Founder of 06Games
</h2>
</div>
</div>
<div class="buttons">
<a class="button is-link is-light" href="https://github.com/06Games/">
<i class="fab fa-github"></i>
Github
</a>
<a class="button is-link is-light" href="https://06games.ddns.net/">
<i class="fas fa-globe"></i>
06Games
</a>
</div>
</div>
</div>
</section>
<br>
<section class="container is-fluid" id="games">
<h3 class="title is-3">My Games</h2>
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box">
<div class="head">
<img src="images/games/angryDash.png" />
<div>
<p class="title">Angry Dash</p>
<p class="subtitle">Made in C#, powered by <a href="https://unity.com/">Unity</a></p>
</div>
</div>
<div class="content">
<p>
Angry dash is a 2D game where your character has to cross a level strewn with obstacles.<br/>
With an easy grip, Angry Dash knows how to please any type of player, beginner or expert.<br/>
To prolong the pleasure, a level editor is present, you and your friends can have fun on levels created by you or the community.
</p>
<div class="info">
<i class="versions">Windows, Android</i>
<div class="links">
<a href="https://06games.ddns.net/Projects/Games/Angry%20Dash"><i class="fas fa-globe"></i></a>
<a href="https://play.google.com/store/apps/details?id=com.fr_06Games.AngryDash"><i class="fab fa-google-play"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box">
<div class="head">
<img src="images/games/epopeeMedievale.png" />
<div>
<p class="title">L'Épopée Médiévale</p>
<p class="subtitle">Made in C#, powered by <a href="https://unity.com/">Unity</a></p>
</div>
</div>
<div class="content">
<p>
L'Épopée Médiévale is a 3D game, where your character evolves in a medieval universe, in search of a better future.<br/>
You will have to fight against various enemies, from a simple prison guard, to a tyrannical king, including a bear.<br/>
L'Épopée Médiévale aims to be a game of adventure, fighting, and strategy.
</p>
<div class="info">
<i class="versions">Windows</i>
<div class="links">
<a href="https://06games.ddns.net/Projects/Games/L'Epopee%20Medievale"><i class="fas fa-globe"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="tile is-parent"></div>
</div>
</section>
<br>
<section class="container is-fluid" id="apps">
<h3 class="title is-3">My Apps</h2>
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box">
<div class="head">
<img src="images/apps/launcher.png" />
<div>
<p class="title">06Games Launcher</p>
<p class="subtitle">Made in C#, powered by <a href="https://unity.com/">Unity</a></p>
</div>
</div>
<div class="content">
<p>
The 06Games Launcher is a place where all 06Games creations come together in one place,
you can manage your brand new 06Games account, download your 06Games games in any version, buy new games,...
</p>
<div class="info">
<i class="versions">Windows, Android</i>
<div class="links">
<a href="https://06games.ddns.net/Projects/App/06Games%20Launcher/"><i class="fas fa-globe"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box">
<div class="head">
<img src="images/apps/suiviScolaire.png" />
<div>
<p class="title">Suivi-Scolaire</p>
<p class="subtitle">Made in C#, powered by <a href="https://unity.com/">Unity</a></p>
</div>
</div>
<div class="content">
<p>
Suivi Scolaire is a mobile/web application that allows easy use of different school life management services.
</p>
<div class="info">
<i class="versions">Windows, Android</i>
<div class="links">
<a href="https://github.com/06-Games/Suivi-Scolaire"><i class="fab fa-github"></i></a>
<a href="https://06games.ddns.net/Projects/App/Suivi-Scolaire/"><i class="fas fa-globe"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box">
<div class="head">
<img src="images/apps/geneaGrab.png" />
<div>
<p class="title">GeneaGrab</p>
<p class="subtitle">Made in C#, powered by <a href="https://unity.com/">Unity</a></p>
</div>
</div>
<div class="content">
<p>
With GeneaGrab, downloading from departmental archives has never been easier!
</p>
<div class="info">
<i class="versions">Windows</i>
<div class="links">
<a href="https://github.com/06Games/GeneaGrab"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<br>
<section class="container is-fluid" id="websites">
<h3 class="title is-3">My websites</h2>
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box">
<div class="head">
<img src="images/websites/06games.png" />
<div>
<p class="title">06Games</p>
<p class="subtitle">Powered by <a href="https://www.php.net">PHP</a></p>
</div>
</div>
<div class="content">
<p>
The 06Games web site is the central place of the 06Games ecosystem.<br />
It allows you to manage your account, thanks to a powerful API.
</p>
<div class="info">
<i class="versions">Web</i>
<div class="links">
<a href="https://06games.ddns.net/"><i class="fas fa-globe"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box">
<div class="head">
<img src="images/websites/mazewave.png" />
<div>
<p class="title">MazeWave</p>
<p class="subtitle"></p>
</div>
</div>
<div class="content">
<p>A website to present MazeWave and his projects</p>
<div class="info">
<i class="versions">Web</i>
<div class="links">
<a href="https://github.com/MazeWave/mazewave.github.io"><i class="fab fa-github"></i></a>
<a href="https://mazewave.github.io"><i class="fas fa-globe"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box">
<div class="head">
<img src="images/websites/espaceProG.png" />
<div>
<p class="title">Espace Pro G</p>
<p class="subtitle">Powered by <a href="https://dotnet.microsoft.com/apps/aspnet">ASP.NET</a></p>
</div>
</div>
<div class="content">
<p>
This is an ongoing project, specially designed for Espace Pro G
</p>
<div class="info">
<i class="versions">Web</i>
<div class="links">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>