diff options
-rw-r--r-- | files.html | 1 | ||||
-rw-r--r-- | inc/classic-contents.html | 2 | ||||
-rw-r--r-- | index.html | 1 | ||||
-rw-r--r-- | license.html | 1 | ||||
-rw-r--r-- | links.html | 1 | ||||
-rw-r--r-- | projects/index.html | 1 | ||||
-rw-r--r-- | projects/lowbat.html | 3 | ||||
-rw-r--r-- | using.html | 58 |
8 files changed, 66 insertions, 2 deletions
@@ -34,6 +34,7 @@ <li><a href="index.html">home</a></li> <li><a href="projects/">my projects</a></li> <li><a href="files.html">files</a></li> + <li><a href="using.html">things I use</a></li> <li><a href="links.html">links</a></li> <hr> <li><a href="https://gitjoe.xyz/">GitJoe</a></li> diff --git a/inc/classic-contents.html b/inc/classic-contents.html index 426c1be..80d9964 100644 --- a/inc/classic-contents.html +++ b/inc/classic-contents.html @@ -51,7 +51,7 @@ <li><a href="index.html">home</a></li> <li><a href="projects/">my projects</a></li> <li><a href="files.html">files</a></li> - <li><a href="use.html">things I use</a></li> + <li><a href="using.html">things I use</a></li> <li><a href="links.html">links</a></li> <hr> <li><a href="https://gitjoe.xyz/">GitJoe</a></li> @@ -34,6 +34,7 @@ <li><a href="index.html">home</a></li> <li><a href="projects/">my projects</a></li> <li><a href="files.html">files</a></li> + <li><a href="using.html">things I use</a></li> <li><a href="links.html">links</a></li> <hr> <li><a href="https://gitjoe.xyz/">GitJoe</a></li> diff --git a/license.html b/license.html index b943f16..69ac469 100644 --- a/license.html +++ b/license.html @@ -34,6 +34,7 @@ <li><a href="index.html">home</a></li> <li><a href="projects/">my projects</a></li> <li><a href="files.html">files</a></li> + <li><a href="using.html">things I use</a></li> <li><a href="links.html">links</a></li> <hr> <li><a href="https://gitjoe.xyz/">GitJoe</a></li> @@ -35,6 +35,7 @@ <li><a href="index.html">home</a></li> <li><a href="projects/">my projects</a></li> <li><a href="files.html">files</a></li> + <li><a href="using.html">things I use</a></li> <li><a href="links.html">links</a></li> <hr> <li><a href="https://gitjoe.xyz/">GitJoe</a></li> diff --git a/projects/index.html b/projects/index.html index 76eb699..2e2c119 100644 --- a/projects/index.html +++ b/projects/index.html @@ -32,6 +32,7 @@ <li><a href="../index.html">home</a></li> <li><a href="../projects/">my projects</a></li> <li><a href="../files.html">files</a></li> + <li><a href="../using.html">things I use</a></li> <li><a href="../links.html">links</a></li> <hr> <li><a href="https://gitjoe.xyz/">GitJoe</a></li> diff --git a/projects/lowbat.html b/projects/lowbat.html index 619e350..88c62f8 100644 --- a/projects/lowbat.html +++ b/projects/lowbat.html @@ -249,6 +249,7 @@ for the JavaScript code in this tag. <li><a href="../index.html">home</a></li> <li><a href="../projects/">my projects</a></li> <li><a href="../files.html">files</a></li> + <li><a href="../using.html">things I use</a></li> <li><a href="../links.html">links</a></li> <hr> <li><a href="https://gitjoe.xyz/">GitJoe</a></li> @@ -389,7 +390,7 @@ for the JavaScript code in this tag. <footer> <p> Copyright © 2020-2022, Joe - - see <a href="license.html">LICENSE</a> - + see <a href="../license.html">LICENSE</a> - this website does not use cookies or php or js </p> </footer> diff --git a/using.html b/using.html new file mode 100644 index 0000000..444ee04 --- /dev/null +++ b/using.html @@ -0,0 +1,58 @@ +<!-- + * ======================== + * ===== =============== + * ====== ================ + * ====== ================ + * ====== ==== ==== == + * ====== === == = = + * ====== === = == = + * = === === = == ==== + * = === === = == = = + * == ===== ==== == + * ======================== + * + * jozanofastora.xyz: using.html + * Mon Apr 18 20:11:16 CEST 2022 + * Joe + * + * The home page +--> + +<html> + <head> + <title>Joe's own website - things I use</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">Joe's dev blog - things I use</a></h1> + </header> + <div class="sidebar"> + <ul> + <li><a href="index.html">home</a></li> + <li><a href="projects/">my projects</a></li> + <li><a href="files.html">files</a></li> + <li><a href="using.html">things I use</a></li> + <li><a href="links.html">links</a></li> + <hr> + <li><a href="https://gitjoe.xyz/">GitJoe</a></li> + <li><a href="https://fossil.jozanofastora.xyz/">FossilJoe</a></li> + </ul> + </div> + <div class="body-contents"> + <h1>My computing experience</h1> + <h2>Software</h2> + <h2>Hardware</h2> + </div> + <footer> + <p> + Copyright © 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> |