blob: 3168915dfe72fe5269bc9bf6fa3a7c3fbd15e5f4 (
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
76
77
78
79
80
81
82
83
84
85
|
<?php include 'inc/classic-contents.inc.php'; ?>
<?php jo_head("Links"); ?>
<?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 style="list-style: none;">
<li>
<span class="fa fa-github"></span> -
My GitHub page -
<a href="https://github.com/JozanLeClerc" target="_blank">
github.com/JozanLeClerc
</a>
</li>
<li>
<span class="fa fa-twitch"></span> -
My Twitch channel (streaming code exclusively) -
<a href="https://www.twitch.tv/jozanleclerc" target="_blank">
twitch.tv/jozanleclerc
</a>
</li>
<li>
<span class="fa fa-bandcamp"></span> -
My Rock N' Roll band's Bandcamp -
<a href="https://towerofsilence.bandcamp.com/" target="_blank">
towerofsilence.bandcamp.com
</a>
</li>
<li>
<span class="fa fa-envelope"></span> -
My email - rbousset@42lyon.fr
</li>
</ul>
<h2>My pals links</h2>
<p>
Also check out my pals links:
<ul style="list-style: none;">
<li>
<span class="fa fa-globe"></span> -
<b>Salad</b>'s lab:
<a href="http://saladslab.karabo.ga/" target="_blank">
saladslab.karabo.ga
</a>
</li>
<li>
<span class="fa fa-github"></span> -
His GitHub page:
<a href="https://github.com/salaaad2" target="_blank">
github.com/salaaad2
</a>
</li>
<li>
<span class="fa fa-twitter"></span> -
And his fun Twitter account:
<a href="https://twitter.com/fellowNwords" target="_blank">
twitter.com/fellowNwords
</a>
</li>
<li>
<span class="fa fa-globe"></span> -
<b>Akira</b>'s WebGL experiments:
<a href="https://inner-fab.com/" target="_blank">
inner-fab.com
</a>
</li>
<li>
<span class="fa fa-gitlab"></span> -
His GitLab page:
<a href="https://gitlab.com/AkiraMass" target="_blank">
gitlab.com/AkiraMass
</a>
</li>
<li>
<span class="fa fa-globe"></span> -
And his daughter's art site:
<a href="https://dveloppez.com/" target="_blank">
dveloppez.com
</a>
</li>
</ul>
</p>
</div>
<?php jo_footer(); ?>
|