diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-06-23 21:30:50 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-06-23 21:30:50 +0200 |
commit | 23ebbaf332efa60636cbb573259ac8e8a3801655 (patch) | |
tree | e0202a16194e9dc7eb5c990568b4fddc09893ee3 /license.php | |
parent | Adding a license page for the LICENSE (diff) | |
download | joe-www-23ebbaf332efa60636cbb573259ac8e8a3801655.tar.gz joe-www-23ebbaf332efa60636cbb573259ac8e8a3801655.tar.bz2 joe-www-23ebbaf332efa60636cbb573259ac8e8a3801655.tar.xz joe-www-23ebbaf332efa60636cbb573259ac8e8a3801655.tar.zst joe-www-23ebbaf332efa60636cbb573259ac8e8a3801655.zip |
License page seems great
Diffstat (limited to 'license.php')
-rw-r--r-- | license.php | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/license.php b/license.php index 40b464b..8e6fdb6 100644 --- a/license.php +++ b/license.php @@ -1,20 +1,21 @@ <?php include 'inc/classic-contents.inc.php'; ?> -<?php jo_head("Home"); ?> +<?php jo_head("LICENSE"); ?> <?php jo_sidebar(); ?> <div class="body-contents"> - <h1>About this site</h1> + <h1>BSD 3-Clause</h1> <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 site is copyrighted under the BSD 3-Clause License. + You can find the terms of the license bellow: </p> - <h1>About me</h1> + <pre> +<?php +$license = file_get_contents('LICENSE'); +echo "$license"; +?> + </pre> <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. + You also can download the license using + <a href="LICENSE">this link</a>. </p> </div> <?php jo_footer(); ?> |