diff options
-rw-r--r-- | public/Images/Background.jpg | bin | 298321 -> 437330 bytes | |||
-rw-r--r-- | public/Images/Fakefetch.png | bin | 0 -> 34975 bytes | |||
-rw-r--r-- | public/index.html | 3 | ||||
-rw-r--r-- | public/projects/Fakefetch.html | 62 | ||||
-rw-r--r-- | public/projects/Qtile.html (renamed from public/projects.html) | 18 | ||||
-rw-r--r-- | public/projects/template.html | 47 |
6 files changed, 119 insertions, 11 deletions
diff --git a/public/Images/Background.jpg b/public/Images/Background.jpg Binary files differindex 03885ba..5976678 100644 --- a/public/Images/Background.jpg +++ b/public/Images/Background.jpg diff --git a/public/Images/Fakefetch.png b/public/Images/Fakefetch.png Binary files differnew file mode 100644 index 0000000..9bba64f --- /dev/null +++ b/public/Images/Fakefetch.png diff --git a/public/index.html b/public/index.html index 16adf63..049360c 100644 --- a/public/index.html +++ b/public/index.html @@ -69,7 +69,8 @@ <div id="projects" class="content-region hide"> <h2>Projects!</h2> <p>Below is a list of my projects, have a look around!</p> - <li><a href="projects.html#qtile">Qtile configs</a></li> + <li><a href="projects/Qtile.html">Qtile configs</a></li> + <li><a href="projects/Fakefetch.html">Fakefetch script</a></li> </div> diff --git a/public/projects/Fakefetch.html b/public/projects/Fakefetch.html new file mode 100644 index 0000000..6c7a450 --- /dev/null +++ b/public/projects/Fakefetch.html @@ -0,0 +1,62 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8"> + <title>Shipwreckt</title> + <link rel="icon" href="logo.jpg" type="image/x-icon"> + + <!-- styles --> + <link href="../style.css" rel="stylesheet" type="text/css" /> + + <!-- jQuery --> + <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script> + + </head> + +<!--------------------------------------------------------------> + <body> + + <header id="header"> + <img src="../logo.jpg"> + <h1>Shipwreckt</h1> + + <!-- Menu selection --> + <ul class="main-menu"> + <li><a href="../index.html#home">Home</a></li> + <li><a href="../index.html#about">About</a></li> + <li><a href="../index.html#projects">Projects</a></li> + <li><a href="../index.html#contact">Contact</a></li> + </ul> + +</header> + + <div id="container"> + <div class="inner"> + <div id="content"> + + <h2>Fakefetch</h2> + <p> + Fakefetch is the first real program I have ever created that I use daily apart from + config files. I made fakefetch when I saw people complaining about neofetch being slow that is why + I have called it fakefetch. In the start it was just 10 lines of bash echo commands which is + like printing in python, so it was bascially bare theminimun, and I was not proud of this + program I was like ok thats done just add it to my .bashrc and continue using Linux. + After about a day I wanted to see if I could add more to it like the uptime, then comes + what package manager im using and after a while I have made my own mini neofetch program + that I can use on all of my computers. + </p> + + <p>Here is an example of a fakefetch script!</p> + <img src="../Images/Fakefetch.png" alt="An example of fakefetch!" width="750" height="auto" > + + + + </div> + </div> + </div> + + <!-- Load additional JS scripts here --> + <script type="text/javascript" src="../script.js"></script> + + </body> +</html> diff --git a/public/projects.html b/public/projects/Qtile.html index 4369655..7280157 100644 --- a/public/projects.html +++ b/public/projects/Qtile.html @@ -3,10 +3,10 @@ <head> <meta charset="utf-8"> <title>Shipwreckt</title> - <link rel="icon" href="logo.jpg" type="image/x-icon"> + <link rel="icon" href="../logo.jpg" type="image/x-icon"> <!-- styles --> - <link href="style.css" rel="stylesheet" type="text/css" /> + <link href="../style.css" rel="stylesheet" type="text/css" /> <!-- jQuery --> <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script> @@ -17,15 +17,15 @@ <body> <header id="header"> - <img src="logo.jpg"> + <img src="../logo.jpg"> <h1>Shipwreckt</h1> <!-- Menu selection --> <ul class="main-menu"> - <li><a href="index.html#home">Home</a></li> - <li><a href="index.html#about">About</a></li> - <li><a href="index.html#projects">Projects</a></li> - <li><a href="index.html#contact">Contact</a></li> + <li><a href="../index.html#home">Home</a></li> + <li><a href="../index.html#about">About</a></li> + <li><a href="../index.html#projects">Projects</a></li> + <li><a href="../index.html#contact">Contact</a></li> </ul> </header> @@ -34,7 +34,6 @@ <div class="inner"> <div id="content"> - <div id="qtile" class="content-region hide"> <h2>Qtile config</h2> <p> Qtile is a desktop environment that is written in the Python programming language. If you @@ -76,13 +75,12 @@ <p>Here is an example of my current desktop</p> <img src="Images/QtileDesktop.png" alt="Silly desktop" width="750" height="auto" > <a href="https://gitlab.com/Shipwreckt/Qtile-conf">Gitlab project</a> - </div> </div> </div> </div> <!-- Load additional JS scripts here --> - <script type="text/javascript" src="script.js"></script> + <script type="text/javascript" src="../script.js"></script> </body> </html> diff --git a/public/projects/template.html b/public/projects/template.html new file mode 100644 index 0000000..7c929c4 --- /dev/null +++ b/public/projects/template.html @@ -0,0 +1,47 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8"> + <title>Shipwreckt</title> + <link rel="icon" href="../logo.jpg" type="image/x-icon"> + + <!-- styles --> + <link href="../style.css" rel="stylesheet" type="text/css" /> + + <!-- jQuery --> + <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script> + + </head> + +<!--------------------------------------------------------------> + <body> + + <header id="header"> + <img src="../logo.jpg"> + <h1>Shipwreckt</h1> + + <!-- Menu selection --> + <ul class="main-menu"> + <li><a href="../index.html#home">Home</a></li> + <li><a href="../index.html#about">About</a></li> + <li><a href="../index.html#projects">Projects</a></li> + <li><a href="../index.html#contact">Contact</a></li> + </ul> + +</header> + + <div id="container"> + <div class="inner"> + <div id="content"> + + <h2>future</h2> + + </div> + </div> + </div> + + <!-- Load additional JS scripts here --> + <script type="text/javascript" src="../script.js"></script> + + </body> +</html> |