blob: 4573108ebc33af28830f56120f8b66d49341d188 (
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
|
<?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>
Salad's lab:
<a href="http://saladslab.karabo.ga/" target="_blank">
saladslab.karabo.ga
</a>
</li>
</ul>
</p>
</div>
<?php jo_footer(); ?>
|