summaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/classic-contents.html53
-rw-r--r--inc/classic-contents.inc.php84
2 files changed, 53 insertions, 84 deletions
diff --git a/inc/classic-contents.html b/inc/classic-contents.html
new file mode 100644
index 0000000..fcf0984
--- /dev/null
+++ b/inc/classic-contents.html
@@ -0,0 +1,53 @@
+<!--
+ * ========================
+ * ===== ===============
+ * ====== ================
+ * ====== ================
+ * ====== ==== ==== ==
+ * ====== === == = =
+ * ====== === = == =
+ * = === === = == ====
+ * = === === = == = =
+ * == ===== ==== ==
+ * ========================
+ *
+ * gitjoe: inc/classic-contents.html
+ * Sun Apr 17 16:11:26 CEST 2022
+ * Joe
+-->
+
+<!-- HEADER -->
+<html>
+ <head>
+ <title>GitJoe -</title>
+ <link rel="stylesheet" type="text/css" href="css/site.css">
+ <meta charset="UTF-8">
+ </head>
+ <body>
+ <div class="fullpage">
+ <header>
+ <h1><a href="index.html">GitJoe -</a></h1>
+ </header>
+
+<!-- SIDEBAR -->
+ <div class="sidebar">
+ <ul>
+ <li><a href="jozan/">jozan</a></li>
+ <li><a href="salad/">salad</a></li>
+ <li><a href="salad-joe/">salad-joe</a></li>
+ <hr>
+ <li><a href="https://jozanofastora.xyz/">Joe's dev blog</a></li>
+ </ul>
+ </div>
+
+<!-- FOOTER -->
+ <footer>
+ <p>
+ Copyright &copy; 2020-2022, Joe -
+ see <a href="license.html">LICENSE</a> -
+ this website does not use cookies or php or js
+ </p>
+ </footer>
+ </div>
+ </body>
+</html>
diff --git a/inc/classic-contents.inc.php b/inc/classic-contents.inc.php
deleted file mode 100644
index 7ba8015..0000000
--- a/inc/classic-contents.inc.php
+++ /dev/null
@@ -1,84 +0,0 @@
-<!-- ----------------------------------------------------------------------- -->
-<!-- -->
-<!-- File : classic-contents.inc.php /_________/ -->
-<!-- Authors : Joe | -->
-<!-- Date : 06/2020 | -->
-<!-- Info : Functions for contents on every page | -->
-<!-- / | -->
-<!-- \ / -->
-<!-- \_____/ -->
-<!-- -->
-<!-- ----------------------------------------------------------------------- -->
-
-<?php
-function
-jo_head($title) {
- global $prefix;
-?>
- <html>
- <head>
- <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">GitJoe - Joe's git - <?php echo "$title"; ?></a></h1>
- </header>
-<?php
-}
-
-function
-jo_bloat_head($title) {
- global $prefix;
-?>
- <html>
- <head>
- <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">
- </head>
- <body>
- <div class="fullpage">
- <header>
- <h1><a href="<?php echo $prefix; ?>index.php">GitJoe - Joe's git - <?php echo "$title"; ?></a></h1>
- </header>
-<?php
-}
-
-function
-jo_sidebar() {
- global $prefix;
-?>
-
- <div class="sidebar">
- <ul>
- <li><a href="<?php echo $prefix; ?>jozan/">jozan</a></li>
- <li><a href="<?php echo $prefix; ?>salad/">salad</a></li>
- <li><a href="<?php echo $prefix; ?>salad-joe/">salad-joe</a></li>
- <hr>
- <li><a href="https://jozanofastora.xyz/">Joe's dev blog</a></li>
- </ul>
- </div>
-<?php
-}
-
-function
-jo_footer() {
- global $prefix;
-?>
- <footer>
- <p>
- Copyright &copy; 2020-2022, Joe -
- see <a href="<?php echo $prefix; ?>license.php">LICENSE</a> -
- this website does not use cookies
- </p>
- </footer>
- </div>
- </body>
- </html>
-<?php
-}
-?>