diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 18:45:37 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 18:45:37 +0200 |
commit | 2a5ee96d947bcb4747cb4cc8e4089db3b3234878 (patch) | |
tree | f608f33814c57d9ae187624c22b7c1b4deab5a4f | |
parent | added .gitignore (diff) | |
download | gitjoe-www-2a5ee96d947bcb4747cb4cc8e4089db3b3234878.tar.gz gitjoe-www-2a5ee96d947bcb4747cb4cc8e4089db3b3234878.tar.bz2 gitjoe-www-2a5ee96d947bcb4747cb4cc8e4089db3b3234878.tar.xz gitjoe-www-2a5ee96d947bcb4747cb4cc8e4089db3b3234878.tar.zst gitjoe-www-2a5ee96d947bcb4747cb4cc8e4089db3b3234878.zip |
Work in progress
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | inc/classic-contents.inc.php | 10 | ||||
-rw-r--r-- | index.php | 19 |
3 files changed, 17 insertions, 15 deletions
@@ -88,3 +88,6 @@ tags [._]*.un~ # End of https://www.toptal.com/developers/gitignore/api/emacs,linux,vim + +jozan/* +salad/*
\ No newline at end of file diff --git a/inc/classic-contents.inc.php b/inc/classic-contents.inc.php index 2b50609..7baafc4 100644 --- a/inc/classic-contents.inc.php +++ b/inc/classic-contents.inc.php @@ -17,14 +17,14 @@ jo_head($title) { ?> <html> <head> - <title>GitJoe's - Joe's git - <?php echo "$title"; ?></title> + <title>GitJoe - Joe's git - <?php echo "$title"; ?></title> <link rel="stylesheet" type="text/css" href="<?php echo $prefix; ?>css/site.css"> <meta charset="UTF-8"> </head> <body> <div class="fullpage"> <header> - <h1><a href="<?php echo $prefix; ?>index.php">Joe's dev blog - <?php echo "$title"; ?></a></h1> + <h1><a href="<?php echo $prefix; ?>index.php">GitJoe - Joe's git - <?php echo "$title"; ?></a></h1> </header> <?php } @@ -35,7 +35,7 @@ jo_bloat_head($title) { ?> <html> <head> - <title> GitJoe's - Joe's git - <?php echo "$title"; ?></title> + <title> GitJoe - Joe's git - <?php echo "$title"; ?></title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="<?php echo $prefix; ?>css/site.css"> <meta charset="UTF-8"> @@ -43,7 +43,7 @@ jo_bloat_head($title) { <body> <div class="fullpage"> <header> - <h1><a href="<?php echo $prefix; ?>index.php">Joe's dev blog - <?php echo "$title"; ?></a></h1> + <h1><a href="<?php echo $prefix; ?>index.php">GitJoe - Joe's git - <?php echo "$title"; ?></a></h1> </header> <?php } @@ -58,7 +58,7 @@ jo_sidebar() { <li><a href="<?php echo $prefix; ?>jozan/">jozan</a></li> <li><a href="<?php echo $prefix; ?>salad/">salad</a></li> <hr> - <li><a href="https://jozanleclerc.xyz/" target="_blank">JozanLeClerc.xyz</a></li> + <li><a href="https://jozanleclerc.xyz/" target="_blank">jozanleclerc.xyz</a></li> </ul> </div> <?php @@ -21,19 +21,18 @@ if ($curr_dir != "git-jozan" && $curr_dir != "gitjoe") { <?php jo_head("Home"); ?> <?php jo_sidebar(); ?> <div class="body-contents"> - <h2>About this site</h2> + <h2>About GitJoe</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. + This website is my public front-end for me and my + pals most sweet repositories, hosted here on this server! + <br> + <br> + Check out <a href="index.php#users">GitJoe users repos</a> right now! </p> - <h2>About me</h2> + <h2>How to be on GitJoe</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. + If you too want your free, BSD-powered, </p> + <h2 class="users">GitJoe users</h2> </div> <?php jo_footer(); ?> |