diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-06-27 18:15:58 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-06-27 18:15:58 +0200 |
commit | 3f4214cabe09e7aecc96a7685d2871300156773d (patch) | |
tree | 33e31382f4e535919e8e584a92643ab3caff081c /inc | |
parent | Better text (diff) | |
download | joe-www-3f4214cabe09e7aecc96a7685d2871300156773d.tar.gz joe-www-3f4214cabe09e7aecc96a7685d2871300156773d.tar.bz2 joe-www-3f4214cabe09e7aecc96a7685d2871300156773d.tar.xz joe-www-3f4214cabe09e7aecc96a7685d2871300156773d.tar.zst joe-www-3f4214cabe09e7aecc96a7685d2871300156773d.zip |
Added the projects welcome page
Diffstat (limited to 'inc')
-rw-r--r-- | inc/classic-contents.inc.php | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/inc/classic-contents.inc.php b/inc/classic-contents.inc.php index 10030b7..b8c1187 100644 --- a/inc/classic-contents.inc.php +++ b/inc/classic-contents.inc.php @@ -6,7 +6,25 @@ jo_head($title) { <head> <title>Joe's own website - <?php echo "$title"; ?></title> <link rel="stylesheet" type="text/css" href="css/site.css"> - <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <meta charset="UTF-8"> + <meta charset="UTF-8"> + </head> + <body> + <div class="fullpage"> + <header> + <h1><a href="index.php">Joe's dev blog - <?php echo "$title"; ?></a></h1> + </header> +<?php +} + +function +jo_bloat_head($title) { +?> + <html> + <head> + <title>Joe's own website - <?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="css/site.css"> + <meta charset="UTF-8"> </head> <body> <div class="fullpage"> @@ -29,7 +47,8 @@ jo_sidebar() { <li><a href="">Assembly</a></li> <li><a href="">UNIX</a></li> <li><a href="">GNU Emacs</a></li> - <li><a href="">My projects</a></li> + <li><a href="">My school projects</a></li> + <li><a href="projects.php">My projects</a></li> <li><a href="">My C/C++ style</a></li> <li><a href="links.php">Links</a></li> </ul> |