blob: 837435939ff877c7e46e13e1d6bae332146ed03e (
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
|
<!-- ----------------------------------------------------------------------- -->
<!-- -->
<!-- File : index.php /_________/ -->
<!-- Authors : Joe | -->
<!-- Date : 06/2020 | -->
<!-- Info : The personnal projects welcome 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_head("Projects"); ?>
<?php jo_sidebar(); ?>
<div class="body-contents">
<h1>My personal projects</h1>
<p>
These are some of the personal projects I have worked on or
that are still being developped:
</p>
<ul>
<li>
<a href="<?php echo $prefix; ?>projects/lowbat.php">lowbat</a> -
a lightweight low battery notifier for Linux and BSD
</li>
<li>
<a href="">Dergods' Realm II</a> -
a raycasting RPG game
</li>
<li>
<a href="">arch-installer</a> -
very basic, FreeBSD-inspired TUI intallation script for Arch Linux,
I'm not too proud of this one, but it has been helpful
</li>
<li>
<a href="">Phobos Aurora</a> -
nothing much for now
</li>
</ul>
</div>
<?php jo_footer(); ?>
|