diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 18:29:26 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 18:29:26 +0200 |
commit | e26c630da098519eea24cdba8a18b1df81ea4616 (patch) | |
tree | ffea1a8c61281f476a4d0207458d92c835c4e2b6 /index.php | |
parent | Create LICENSE (diff) | |
download | gitjoe-www-e26c630da098519eea24cdba8a18b1df81ea4616.tar.gz gitjoe-www-e26c630da098519eea24cdba8a18b1df81ea4616.tar.bz2 gitjoe-www-e26c630da098519eea24cdba8a18b1df81ea4616.tar.xz gitjoe-www-e26c630da098519eea24cdba8a18b1df81ea4616.tar.zst gitjoe-www-e26c630da098519eea24cdba8a18b1df81ea4616.zip |
Update
Diffstat (limited to '')
-rw-r--r-- | index.php | 40 |
1 files changed, 39 insertions, 1 deletions
@@ -1 +1,39 @@ -<h1>Yo</h1> +<!-- ----------------------------------------------------------------------- --> +<!-- --> +<!-- File : index.php /_________/ --> +<!-- Authors : Joe | --> +<!-- Date : 06/2020 | --> +<!-- Info : The home page | --> +<!-- / | --> +<!-- \ / --> +<!-- \_____/ --> +<!-- --> +<!-- ----------------------------------------------------------------------- --> + +<?php +$prefix = "./"; +$curr_dir = basename(getcwd()); +if ($curr_dir != "git-jozan" && $curr_dir != "gitjoe") { + $prefix = "../"; +} +?> +<?php include $prefix."inc/classic-contents.inc.php"; ?> +<?php jo_head("Home"); ?> +<?php jo_sidebar(); ?> +<div class="body-contents"> + <h2>About this site</h2> + <p> + Welcome to my personnal blog. Here you can find my tips and articles + on various tech and programming subjects. + <br><br> + The site is still in active developpement, stay tuned. + </p> + <h2>About me</h2> + <p> + I am a student for + <a href="https://www.42lyon.fr/" target="_blank">42Lyon</a> + IT school based in Lyon, France. + I work on various personnal project beside that. + </p> +</div> +<?php jo_footer(); ?> |