blob: a4061bc129f59f1509830bac27f1c87368143b2a (
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
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
|
<!-- ----------------------------------------------------------------------- -->
<!-- -->
<!-- File : links.php /_________/ -->
<!-- Authors : Joe | -->
<!-- Date : 06/2020 | -->
<!-- Info : The links page | -->
<!-- / | -->
<!-- \ / -->
<!-- \_____/ -->
<!-- -->
<!-- ----------------------------------------------------------------------- -->
<?php
$prefix = "./";
$curr_dir = basename(getcwd());
if ($curr_dir != "jozan" && $curr_dir != "jozanleclerc.xyz") {
$prefix = "../";
}
?>
<?php include $prefix."inc/classic-contents.inc.php"; ?>
<?php jo_bloat_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-globe"></span> -
My Chisel page -
<a href="https://chiselapp.com/user/JozanLeClerc/">
chiselapp.com/user/JozanLeClerc
</a>
</li>
<li>
<span class="fa fa-github"></span> -
My GitHub page -
<a href="https://github.com/JozanLeClerc">
github.com/JozanLeClerc
</a>
</li>
<li>
<span class="fa fa-git"></span> -
My GitJoe page -
<a href="https://git.jozanleclerc.xyz/jozan">
git.jozanleclerc.xyz/jozan
</a>
</li>
<li>
<span class="fa fa-twitch"></span> -
My Twitch channel (streaming code exclusively) -
<a href="https://www.twitch.tv/jozanleclerc">
twitch.tv/jozanleclerc
</a>
</li>
<li>
<span class="fa fa-bandcamp"></span> -
My Rockabilly band's Bandcamp -
<a href="https://towerofsilence.bandcamp.com/">
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/">
saladslab.karabo.ga
</a>
</li>
<li>
<span class="fa fa-github"></span> -
His GitHub page:
<a href="https://github.com/salaaad2">
github.com/salaaad2
</a>
</li>
<li>
<span class="fa fa-git"></span> -
His GitJoe page -
<a href="https://git.jozanleclerc.xyz/salad">
git.jozanleclerc.xyz/salad
</a>
</li>
<li>
<span class="fa fa-twitter"></span> -
And his fun Twitter account:
<a href="https://twitter.com/fellowNwords">
twitter.com/fellowNwords
</a>
</li>
<li>
<span class="fa fa-globe"></span> -
<b>Akira</b>'s WebGL experiments:
<a href="https://inner-fab.com/">
inner-fab.com
</a>
</li>
<li>
<span class="fa fa-gitlab"></span> -
His GitLab page:
<a href="https://gitlab.com/AkiraMass">
gitlab.com/AkiraMass
</a>
</li>
<li>
<span class="fa fa-globe"></span> -
And his daughter's art site:
<a href="https://dveloppez.com/">
dveloppez.com
</a>
</li>
</ul>
</p>
</div>
<?php jo_footer(); ?>
|