blob: 33c73dc2c60d1bed1ca01b1c89246c4beb1433a5 (
plain)
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
|
<?php include 'inc/classic-contents.inc.php'; ?>
<?php jo_head("Home"); ?>
<?php jo_sidebar(); ?>
<div class="body-contents">
<h2>My links</h2>
<p>
Here Are the links you can use to follow me around:
</p>
<ul>
<li>
My GitHub page -
<a href="https://github.com/JozanLeClerc" target="_blank">
github.com/JozanLeClerc
</a>
</li>
<li>
My Twitch channel (streaming code exclusively) -
<a href="https://www.twitch.tv/jozanleclerc" target="_blank">
twitch.tv/jozanleclerc
</a>
</li>
<li>
My Rock N' Roll band's Bandcamp -
<a href="https://towerofsilence.bandcamp.com/" target="_blank">
towerofsilence.bandcamp.com
</a>
</li>
<li>
My email - rbousset@42lyon.fr
</li>
</ul>
<h2>My pals' links</h2>
<p>
Also check out my pals links:
<ul>
<li>
<b>Salad</b>'s lab:
<a href="http://saladslab.karabo.ga/" target="_blank">
saladslab.karabo.ga
</a>
</li>
<li>
His GitHub page:
<a href="https://github.com/salaaad2" target="_blank">
github.com/salaaad2
</a>
</li>
<li>
And his fun Twitter account:
<a href="https://twitter.com/fellowNwords" target="_blank">
twitter.com/fellowNwords
</a>
</li>
<li>
<b>Akira</b>'s WebGL experiments:
<a href="https://inner-fab.com/" target="_blank">
inner-fab.com
</a>
</li>
<li>
His GitLab page:
<a href="https://gitlab.com/AkiraMass" target="_blank">
gitlab.com/AkiraMass
</a>
</li>
<li>
And his daughter's art site:
<a href="https://dveloppez.com/" target="_blank">
dveloppez.com
</a>
</li>
</ul>
</p>
</div>
<?php jo_footer(); ?>
|