diff options
| author | Shipwreckt <me@shipwreckt.co.uk> | 2025-11-02 20:32:56 +0000 |
|---|---|---|
| committer | Shipwreckt <me@shipwreckt.co.uk> | 2025-11-02 20:32:56 +0000 |
| commit | 0bf147512bb84d1a05d4c7cf1ec049c7a6b534d5 (patch) | |
| tree | 75517e797d6f6091bdc6c4b8b48b60b93474f463 | |
| parent | 7a52ddeba2a68388b544f529d2d92104420f77b0 (diff) | |
65 files changed, 751 insertions, 118 deletions
diff --git a/.eleventy.js b/.eleventy.js new file mode 100644 index 0000000..4bcf389 --- /dev/null +++ b/.eleventy.js @@ -0,0 +1,32 @@ +import { DateTime } from "luxon"; + +export default function(eleventyConfig) { + // Posts collection + eleventyConfig.addCollection("posts", collectionApi => { + return collectionApi + .getFilteredByGlob("./src/posts/*.{md,html}") + .sort((a, b) => b.date - a.date); + }); + + // Date formatting filter + eleventyConfig.addFilter("dateFormat", (dateObj, format = "MMMM dd, yyyy") => { + if (!dateObj) return ""; + return DateTime.fromJSDate(dateObj).toFormat(format); + }); + + // Passthrough for static assets + eleventyConfig.addPassthroughCopy("src/images"); + eleventyConfig.addPassthroughCopy("src/assets"); + + // Directory configuration + return { + htmlTemplateEngine: "njk", + markdownTemplateEngine: "njk", + dir: { + input: "src", + output: "public", + includes: "_includes" + } + }; +} + @@ -1,11 +1,14 @@ -## **Shipwreckt.co.uk Website Repository** +# **Shipwreckt.co.uk Website Git Repo** -Welcome to my personal website repository! This project is licensed under the GNU Affero General Public License v3.0, giving you the freedom to copy, modify, and distribute it. Additionally, you are not required to credit this website as your template if you choose to use it. +This is the Git repo for my personal website! This repo is licensed under the GNU Affero General Public License v3.0, this means that you have the freedom to copy, modify, and redistribute this code! Additionally you are not required to credit me if you use this as a template for your website! -### License +## Notes +I use the [11ty](https://www.11ty.dev/) static site generator for this website, I suggest looking into the documentation before you do anything with this website! +## License This project is licensed under the GNU Affero General Public License v3.0. You can view the full license [here](https://www.gnu.org/licenses/agpl-3.0.html). A copy of the license should be included in this repository. +The 11ty project uses the [MIT License](https://mit-license.org/) additionally a copy of the MIT License is present within this repo. [Here](https://github.com/11ty/eleventy/blob/main/LICENSE) is an online copy of the license. ### How to Clone To clone this repository, use the following command: @@ -14,8 +17,9 @@ From my git server ```bash git clone git://shipwreckt.co.uk/website - From Gitlab ```bash git clone https://gitlab.com/Shipwreckt/website + + diff --git a/public/archive/index.html b/public/archive/index.html index 6705438..2caf5a2 100644 --- a/public/archive/index.html +++ b/public/archive/index.html @@ -33,5 +33,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/archive/internet/Burning_ISO/index.html b/public/archive/internet/Burning_ISO/index.html index ef05fd1..0fb79a6 100644 --- a/public/archive/internet/Burning_ISO/index.html +++ b/public/archive/internet/Burning_ISO/index.html @@ -7,11 +7,26 @@ <title>Online profiles</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <hr> + <h1>Online profiles</h1> + <p class="post-date">August 24, 2024</p> + </header> + <article> - <header> - <h1>Online profiles</h1> - <p class="post-date">August 24, 2024</p> - </header> <div class="post-content"> <hr> <h2>why?</h2> @@ -32,7 +47,7 @@ - <footer class="post-footer"> + <footer> <a href="/archive/internet" class="back-button">โฌ
Back to internet</a> </footer> diff --git a/public/archive/internet/Passwords/index.html b/public/archive/internet/Passwords/index.html index a8267cf..bb06521 100644 --- a/public/archive/internet/Passwords/index.html +++ b/public/archive/internet/Passwords/index.html @@ -7,11 +7,26 @@ <title>Passwords ๐</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <hr> + <h1>Passwords ๐</h1> + <p class="post-date">August 24, 2024</p> + </header> + <article> - <header> - <h1>Passwords ๐</h1> - <p class="post-date">August 24, 2024</p> - </header> <div class="post-content"> <hr> <p>Having a secure Password is the most important part of your online security, so how do you keep and know a good password?</p> @@ -42,7 +57,7 @@ In the modern day you do not need to remember your passwords thanks to password - <footer class="post-footer"> + <footer> <a href="/archive/internet" class="back-button">โฌ
Back to internet</a> </footer> diff --git a/public/archive/internet/browsers/index.html b/public/archive/internet/browsers/index.html index 7a104a4..615e8ca 100644 --- a/public/archive/internet/browsers/index.html +++ b/public/archive/internet/browsers/index.html @@ -7,11 +7,26 @@ <title>Web browsers ๐</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <hr> + <h1>Web browsers ๐</h1> + <p class="post-date">August 25, 2024</p> + </header> + <article> - <header> - <h1>Web browsers ๐</h1> - <p class="post-date">August 25, 2024</p> - </header> <div class="post-content"> <hr> <p>There is lots of debate on what the best 'privacy based browser' is, so I am going to settle it here and now, and suggest the two best web browser you should daily drive.</p> @@ -35,7 +50,7 @@ The [Tor web browser](https://www.torproject.org/) is a browser that uses the To - <footer class="post-footer"> + <footer> <a href="/archive/internet" class="back-button">โฌ
Back to internet</a> </footer> diff --git a/public/archive/internet/i2p/index.html b/public/archive/internet/i2p/index.html index a1831bf..fb5b21b 100644 --- a/public/archive/internet/i2p/index.html +++ b/public/archive/internet/i2p/index.html @@ -7,11 +7,26 @@ <title>I2P ๐ต๏ธ</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <hr> + <h1>I2P ๐ต๏ธ</h1> + <p class="post-date">August 25, 2024</p> + </header> + <article> - <header> - <h1>I2P ๐ต๏ธ</h1> - <p class="post-date">August 25, 2024</p> - </header> <div class="post-content"> <hr> <h2>What is I2P?</h2> @@ -60,7 +75,7 @@ - <footer class="post-footer"> + <footer> <a href="/archive/internet" class="back-button">โฌ
Back to internet</a> </footer> diff --git a/public/archive/internet/index.html b/public/archive/internet/index.html index 0a97269..4cea52e 100644 --- a/public/archive/internet/index.html +++ b/public/archive/internet/index.html @@ -38,5 +38,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/archive/linux/Burning_ISO/index.html b/public/archive/linux/Burning_ISO/index.html index a134a3b..f0e202b 100644 --- a/public/archive/linux/Burning_ISO/index.html +++ b/public/archive/linux/Burning_ISO/index.html @@ -7,11 +7,24 @@ <title>Burning an ISO to a USB stick ๐พ</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>Burning an ISO to a USB stick ๐พ</h1> + <p class="post-date">August 24, 2024</p> + </header> <article> - <header> - <h1>Burning an ISO to a USB stick ๐พ</h1> - <p class="post-date">August 24, 2024</p> - </header> <div class="post-content"> <hr> <p>Burning an ISO onto a USB stick on Linux is very easy, and you only need to use a few commands!</p> @@ -69,7 +82,7 @@ - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/public/archive/linux/Cleaning_Arch_Linux/index.html b/public/archive/linux/Cleaning_Arch_Linux/index.html index af04eff..e8456d4 100644 --- a/public/archive/linux/Cleaning_Arch_Linux/index.html +++ b/public/archive/linux/Cleaning_Arch_Linux/index.html @@ -7,11 +7,24 @@ <title>How To Clean Arch Linux ๐งน</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>How To Clean Arch Linux ๐งน</h1> + <p class="post-date">July 21, 2024</p> + </header> <article> - <header> - <h1>How To Clean Arch Linux ๐งน</h1> - <p class="post-date">July 21, 2024</p> - </header> <div class="post-content"> <hr> <p>In this artical I will be telling you how to clean up your <a href="https://archlinux.org">Arch Linux system</a> in the same way I do so.</p> @@ -46,7 +59,7 @@ $ sudo pacman -Rns $(pacman -Qtdq) # Uninstall orphan packages</p> - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/public/archive/linux/Encrypting_USBs/index.html b/public/archive/linux/Encrypting_USBs/index.html index d879575..0852842 100644 --- a/public/archive/linux/Encrypting_USBs/index.html +++ b/public/archive/linux/Encrypting_USBs/index.html @@ -7,11 +7,24 @@ <title>Encrypting USB with luks ๐</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>Encrypting USB with luks ๐</h1> + <p class="post-date">February 17, 2025</p> + </header> <article> - <header> - <h1>Encrypting USB with luks ๐</h1> - <p class="post-date">February 17, 2025</p> - </header> <div class="post-content"> <hr> <h2>What you will need ๐</h2> @@ -83,7 +96,7 @@ $ sudo mount /dev/mapper/USB /mnt/USB</p> - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/public/archive/linux/File_Hierarchy/index.html b/public/archive/linux/File_Hierarchy/index.html index 6bb87c1..6c81ce7 100644 --- a/public/archive/linux/File_Hierarchy/index.html +++ b/public/archive/linux/File_Hierarchy/index.html @@ -7,11 +7,24 @@ <title>Linux File Hierarchy</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>Linux File Hierarchy</h1> + <p class="post-date">August 05, 2024</p> + </header> <article> - <header> - <h1>Linux File Hierarchy</h1> - <p class="post-date">August 05, 2024</p> - </header> <div class="post-content"> <hr> <p>Like any other operating system Linux has a File Hierarchy, due to the fact that the Linux operating system is a Unix-like operating system the infomation in this article can be applied to BSD and any modern versions of Unix like Solaris or IBM's AIX.</p> @@ -63,7 +76,7 @@ The /dev directory contains files that represent the hardware devices of your co - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/public/archive/linux/Formatting_USB/index.html b/public/archive/linux/Formatting_USB/index.html index a194a2a..2fbb64a 100644 --- a/public/archive/linux/Formatting_USB/index.html +++ b/public/archive/linux/Formatting_USB/index.html @@ -7,11 +7,24 @@ <title>Formatting USBs With Linux ๐๐ฅ</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>Formatting USBs With Linux ๐๐ฅ</h1> + <p class="post-date">August 23, 2024</p> + </header> <article> - <header> - <h1>Formatting USBs With Linux ๐๐ฅ</h1> - <p class="post-date">August 23, 2024</p> - </header> <div class="post-content"> <hr> <p>Formatting a USB in Linux is easier then <a href="01BurningIsos">burning an ISO</a> and only needs a few quick commands!</p> @@ -50,7 +63,6 @@ <hr> <h2>Finished โ
</h2> <p>All done! Now you have an empty USB stick you can use for all your files!</p> -<hr> </div> </article> @@ -58,7 +70,7 @@ - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/public/archive/linux/Git_Server/index.html b/public/archive/linux/Git_Server/index.html index 4864411..4fe1d07 100644 --- a/public/archive/linux/Git_Server/index.html +++ b/public/archive/linux/Git_Server/index.html @@ -7,11 +7,24 @@ <title>How to start your own epic Git server!</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>How to start your own epic Git server!</h1> + <p class="post-date">February 23, 2025</p> + </header> <article> - <header> - <h1>How to start your own epic Git server!</h1> - <p class="post-date">February 23, 2025</p> - </header> <div class="post-content"> <hr> <p>Quick guide on how to set up a git server with stagic html website.</p> @@ -145,7 +158,7 @@ $ git push server master && git push origin master</p> - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/public/archive/linux/Optical_Media/index.html b/public/archive/linux/Optical_Media/index.html index 504e546..c199e07 100644 --- a/public/archive/linux/Optical_Media/index.html +++ b/public/archive/linux/Optical_Media/index.html @@ -7,11 +7,24 @@ <title>Burning optical media in Linux ๐ฟ</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>Burning optical media in Linux ๐ฟ</h1> + <p class="post-date">August 23, 2024</p> + </header> <article> - <header> - <h1>Burning optical media in Linux ๐ฟ</h1> - <p class="post-date">August 23, 2024</p> - </header> <div class="post-content"> <hr> <p>This is a quick tutorial to show you how to burn any file to a piece of optical disk media!</p> @@ -62,7 +75,7 @@ movies.iso being the output ISO from the last command.</p> - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/public/archive/linux/Speeding_Up_Pacman/index.html b/public/archive/linux/Speeding_Up_Pacman/index.html index b92ecab..788ea56 100644 --- a/public/archive/linux/Speeding_Up_Pacman/index.html +++ b/public/archive/linux/Speeding_Up_Pacman/index.html @@ -7,11 +7,24 @@ <title>Speeding up Pacman ๐</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>Speeding up Pacman ๐</h1> + <p class="post-date">August 23, 2024</p> + </header> <article> - <header> - <h1>Speeding up Pacman ๐</h1> - <p class="post-date">August 23, 2024</p> - </header> <div class="post-content"> <hr> <p>It is very easy to speed up Pacman, and we can do it in a few easy steps, so follow this guide, and your favourite package manager will be fast as anything!</p> @@ -53,7 +66,7 @@ $ sudo pacman -Syy # To update package list from server</p> - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/public/archive/linux/TarGZ/index.html b/public/archive/linux/TarGZ/index.html index 738c2d5..3803b63 100644 --- a/public/archive/linux/TarGZ/index.html +++ b/public/archive/linux/TarGZ/index.html @@ -7,11 +7,24 @@ <title>How to tar.gz a directory ๐</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>How to tar.gz a directory ๐</h1> + <p class="post-date">April 13, 2025</p> + </header> <article> - <header> - <h1>How to tar.gz a directory ๐</h1> - <p class="post-date">April 13, 2025</p> - </header> <div class="post-content"> <hr> <h2>What you will need ๐</h2> @@ -37,7 +50,7 @@ - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/public/archive/linux/Terminal_Is_Better/index.html b/public/archive/linux/Terminal_Is_Better/index.html index c2ed125..d02af11 100644 --- a/public/archive/linux/Terminal_Is_Better/index.html +++ b/public/archive/linux/Terminal_Is_Better/index.html @@ -7,11 +7,24 @@ <title>Why the terminal will always beat the GUI ๐จโ๐ป</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>Why the terminal will always beat the GUI ๐จโ๐ป</h1> + <p class="post-date">August 27, 2024</p> + </header> <article> - <header> - <h1>Why the terminal will always beat the GUI ๐จโ๐ป</h1> - <p class="post-date">August 27, 2024</p> - </header> <div class="post-content"> <hr> <p>I want to say this now, I do not care if people use a GUI option for things, Linux is all about choice and if you choose to use a GUI instead of using the terminal that is your choice!</p> @@ -29,7 +42,8 @@ <p>MPV - Video player FEH - Image viewer</p> <hr> -<p>For now that is all I have on why terminal is better!</p> +<h2>Overview</h2> +<p>Those are all the reasons why I think the terminal is better then the GUI!</p> </div> </article> @@ -37,7 +51,7 @@ FEH - Image viewer</p> - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/public/archive/linux/Ventoy/index.html b/public/archive/linux/Ventoy/index.html index 52ed734..a56fbc0 100644 --- a/public/archive/linux/Ventoy/index.html +++ b/public/archive/linux/Ventoy/index.html @@ -7,11 +7,24 @@ <title>How to Install Ventoy with Linux ๐ง๐</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>How to Install Ventoy with Linux ๐ง๐</h1> + <p class="post-date">August 25, 2024</p> + </header> <article> - <header> - <h1>How to Install Ventoy with Linux ๐ง๐</h1> - <p class="post-date">August 25, 2024</p> - </header> <div class="post-content"> <hr> <p>Installing Ventoy is pretty easy, just a few quick steps and you will be there!</p> @@ -74,7 +87,7 @@ $ Replace the X with your device letter.</p> - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/public/archive/linux/index.html b/public/archive/linux/index.html index 359bf25..4d88c56 100644 --- a/public/archive/linux/index.html +++ b/public/archive/linux/index.html @@ -55,5 +55,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/churches/index.html b/public/churches/index.html index d95aeec..caeb80c 100644 --- a/public/churches/index.html +++ b/public/churches/index.html @@ -101,5 +101,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/contact/index.html b/public/contact/index.html index 4b4635c..fba6930 100644 --- a/public/contact/index.html +++ b/public/contact/index.html @@ -37,5 +37,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/index.html b/public/index.html index 6aed45e..9163e38 100644 --- a/public/index.html +++ b/public/index.html @@ -207,10 +207,14 @@ </li> </ul> -<hr> </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/links/index.html b/public/links/index.html index 6195791..e0fc05a 100644 --- a/public/links/index.html +++ b/public/links/index.html @@ -41,5 +41,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/posts/2025-10-30/index.html b/public/posts/2025-10-30/index.html index da03228..07284f3 100644 --- a/public/posts/2025-10-30/index.html +++ b/public/posts/2025-10-30/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Website and life updates!</h1> <p class="post-date">October 30, 2025</p> @@ -64,4 +77,3 @@ Before I go into personal updates lets start with some website updates! If you h </body> </html> - diff --git a/public/posts/I2P/index.html b/public/posts/I2P/index.html index c4b3fe0..5983fe3 100644 --- a/public/posts/I2P/index.html +++ b/public/posts/I2P/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Trying out I2P ๐ต๏ธ</h1> <p class="post-date">September 22, 2024</p> @@ -70,4 +83,3 @@ Most of the websites on I2P are personal sites, and I highly suggest using NotBo </body> </html> - diff --git a/public/posts/No_more_school/index.html b/public/posts/No_more_school/index.html index 670d2c3..b5f1344 100644 --- a/public/posts/No_more_school/index.html +++ b/public/posts/No_more_school/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>No more school</h1> <p class="post-date">July 07, 2025</p> @@ -48,4 +61,3 @@ </body> </html> - diff --git a/public/posts/Pi-hole/index.html b/public/posts/Pi-hole/index.html index aa0d6bf..7c1e118 100644 --- a/public/posts/Pi-hole/index.html +++ b/public/posts/Pi-hole/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Pi-hole</h1> <p class="post-date">September 18, 2024</p> @@ -67,4 +80,3 @@ </body> </html> - diff --git a/public/posts/School/index.html b/public/posts/School/index.html index 8be4c58..ebd8e30 100644 --- a/public/posts/School/index.html +++ b/public/posts/School/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>School</h1> <p class="post-date">September 07, 2024</p> @@ -42,4 +55,3 @@ </body> </html> - diff --git a/public/posts/archserver/index.html b/public/posts/archserver/index.html index 38e3996..7a6e7b6 100644 --- a/public/posts/archserver/index.html +++ b/public/posts/archserver/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Arch Linux Server!</h1> <p class="post-date">August 26, 2024</p> @@ -70,4 +83,3 @@ </body> </html> - diff --git a/public/posts/christmas/index.html b/public/posts/christmas/index.html index 45048fd..2c044c0 100644 --- a/public/posts/christmas/index.html +++ b/public/posts/christmas/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Christmas ๐
</h1> <p class="post-date">December 16, 2024</p> @@ -104,4 +117,3 @@ </body> </html> - diff --git a/public/posts/dwm/index.html b/public/posts/dwm/index.html index e25df61..a089aa4 100644 --- a/public/posts/dwm/index.html +++ b/public/posts/dwm/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Switching to DWM</h1> <p class="post-date">July 13, 2024</p> @@ -79,4 +92,3 @@ The reason why I have chosen DWM as my window manager is because recently I have </body> </html> - diff --git a/public/posts/emailandlife/index.html b/public/posts/emailandlife/index.html index 28fec62..6dffa64 100644 --- a/public/posts/emailandlife/index.html +++ b/public/posts/emailandlife/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Email and Life update</h1> <p class="post-date">December 01, 2024</p> @@ -47,4 +60,3 @@ </body> </html> - diff --git a/public/posts/fishshell/index.html b/public/posts/fishshell/index.html index 7303d18..c049c5b 100644 --- a/public/posts/fishshell/index.html +++ b/public/posts/fishshell/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Trying out fish ๐</h1> <p class="post-date">August 22, 2024</p> @@ -66,4 +79,3 @@ </body> </html> - diff --git a/public/posts/freebsd/index.html b/public/posts/freebsd/index.html index 634bbfe..7372601 100644 --- a/public/posts/freebsd/index.html +++ b/public/posts/freebsd/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Trying out FreeBSD</h1> <p class="post-date">July 22, 2024</p> @@ -118,4 +131,3 @@ Screenshot of my BSD setup running Neofetch </body> </html> - diff --git a/public/posts/gentoo/index.html b/public/posts/gentoo/index.html index 2b60bb3..8102dc9 100644 --- a/public/posts/gentoo/index.html +++ b/public/posts/gentoo/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Installing Gentoo Linux</h1> <p class="post-date">August 31, 2024</p> @@ -57,4 +70,3 @@ I found the <a href="https://wiki.gentoo.org/wiki/Handbook:Main_Page">Gentoo Han </body> </html> - diff --git a/public/posts/kernal/index.html b/public/posts/kernal/index.html index cd85a66..64b7aac 100644 --- a/public/posts/kernal/index.html +++ b/public/posts/kernal/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Compiling the Linux Kernel ๐ง</h1> <p class="post-date">August 28, 2024</p> @@ -51,4 +64,3 @@ </body> </html> - diff --git a/public/posts/life_update/index.html b/public/posts/life_update/index.html index f0d9e24..491254e 100644 --- a/public/posts/life_update/index.html +++ b/public/posts/life_update/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Life update</h1> <p class="post-date">May 28, 2025</p> @@ -48,4 +61,3 @@ </body> </html> - diff --git a/public/posts/makingart/index.html b/public/posts/makingart/index.html index 7d8ed50..ee91314 100644 --- a/public/posts/makingart/index.html +++ b/public/posts/makingart/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Making some art</h1> <p class="post-date">July 24, 2024</p> @@ -48,4 +61,3 @@ </body> </html> - diff --git a/public/posts/newlaptop/index.html b/public/posts/newlaptop/index.html index aefcd0e..2cb3c11 100644 --- a/public/posts/newlaptop/index.html +++ b/public/posts/newlaptop/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>New Laptop!</h1> <p class="post-date">August 17, 2024</p> @@ -59,4 +72,3 @@ </body> </html> - diff --git a/public/posts/pccase/index.html b/public/posts/pccase/index.html index efeff5f..41257e8 100644 --- a/public/posts/pccase/index.html +++ b/public/posts/pccase/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>New PC case and new year!</h1> <p class="post-date">February 16, 2025</p> @@ -71,4 +84,3 @@ The disc drive is exclusively for Father Ted episodes </body> </html> - diff --git a/public/posts/servers/index.html b/public/posts/servers/index.html index 50c9ada..ff35910 100644 --- a/public/posts/servers/index.html +++ b/public/posts/servers/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Messing Around with servers</h1> <p class="post-date">July 27, 2024</p> @@ -64,4 +77,3 @@ The operating system of choice for this server is Ubuntu Server; I do know it is </body> </html> - diff --git a/public/posts/summer/index.html b/public/posts/summer/index.html index 11c85c7..84cc03a 100644 --- a/public/posts/summer/index.html +++ b/public/posts/summer/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Summer holiday!</h1> <p class="post-date">July 19, 2024</p> @@ -71,4 +84,3 @@ This is my 'testing computer' where I will be doing all this on. </body> </html> - diff --git a/public/posts/vps/index.html b/public/posts/vps/index.html index 16feca4..b7fc82d 100644 --- a/public/posts/vps/index.html +++ b/public/posts/vps/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>VPS Server ๐๏ธ</h1> <p class="post-date">February 21, 2025</p> @@ -65,4 +78,3 @@ </body> </html> - diff --git a/public/posts/yubikeys/index.html b/public/posts/yubikeys/index.html index 610ec7b..5cfe2b5 100644 --- a/public/posts/yubikeys/index.html +++ b/public/posts/yubikeys/index.html @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>Yubikeys!</h1> <p class="post-date">August 03, 2024</p> @@ -58,4 +71,3 @@ </body> </html> - diff --git a/public/tags/arch-linux/index.html b/public/tags/arch-linux/index.html index 6fa7b74..14bd8b5 100644 --- a/public/tags/arch-linux/index.html +++ b/public/tags/arch-linux/index.html @@ -40,5 +40,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/bsd/index.html b/public/tags/bsd/index.html index 98b04d3..b5e9584 100644 --- a/public/tags/bsd/index.html +++ b/public/tags/bsd/index.html @@ -40,5 +40,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/dark/index.html b/public/tags/dark/index.html index 6f3f6ea..0f24688 100644 --- a/public/tags/dark/index.html +++ b/public/tags/dark/index.html @@ -38,5 +38,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/hardware/index.html b/public/tags/hardware/index.html index 37bf135..4c6882d 100644 --- a/public/tags/hardware/index.html +++ b/public/tags/hardware/index.html @@ -46,5 +46,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/information-about-linux/index.html b/public/tags/information-about-linux/index.html index 022aeef..7f40db4 100644 --- a/public/tags/information-about-linux/index.html +++ b/public/tags/information-about-linux/index.html @@ -40,5 +40,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/life/index.html b/public/tags/life/index.html index a59d8c5..e663d09 100644 --- a/public/tags/life/index.html +++ b/public/tags/life/index.html @@ -52,5 +52,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/linux/index.html b/public/tags/linux/index.html index 41debd9..aec9931 100644 --- a/public/tags/linux/index.html +++ b/public/tags/linux/index.html @@ -56,5 +56,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/media-tutorials/index.html b/public/tags/media-tutorials/index.html index 22f4e19..b1ebdb6 100644 --- a/public/tags/media-tutorials/index.html +++ b/public/tags/media-tutorials/index.html @@ -44,5 +44,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/posts/index.html b/public/tags/posts/index.html index 2589afb..9db697c 100644 --- a/public/tags/posts/index.html +++ b/public/tags/posts/index.html @@ -78,5 +78,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/safe/index.html b/public/tags/safe/index.html index 33a972f..1176482 100644 --- a/public/tags/safe/index.html +++ b/public/tags/safe/index.html @@ -42,5 +42,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/tech/index.html b/public/tags/tech/index.html index 79bcfa9..e7daa35 100644 --- a/public/tags/tech/index.html +++ b/public/tags/tech/index.html @@ -66,5 +66,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/the-linux-server/index.html b/public/tags/the-linux-server/index.html index 0557795..6c26c88 100644 --- a/public/tags/the-linux-server/index.html +++ b/public/tags/the-linux-server/index.html @@ -38,5 +38,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/public/tags/tools/index.html b/public/tags/tools/index.html index a51b8d4..385d38c 100644 --- a/public/tags/tools/index.html +++ b/public/tags/tools/index.html @@ -40,5 +40,10 @@ </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/src/_includes/internet.njk b/src/_includes/internet.njk index 515c5d5..b9dbc0f 100644 --- a/src/_includes/internet.njk +++ b/src/_includes/internet.njk @@ -7,11 +7,26 @@ <title>{{ title }}</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <hr> + <h1>{{ title }}</h1> + <p class="post-date">{{ date | dateFormat("MMMM dd, yyyy") }}</p> + </header> + <article> - <header> - <h1>{{ title }}</h1> - <p class="post-date">{{ date | dateFormat("MMMM dd, yyyy") }}</p> - </header> <div class="post-content"> <hr> {{ content | safe }} @@ -21,7 +36,7 @@ {% set postTags = (page and page.data and page.data.tags) or tags or [] %} {% set displayTags = postTags | reject("equalto", "post") | list %} - <footer class="post-footer"> + <footer> <a href="/archive/internet" class="back-button">โฌ
Back to internet</a> </footer> diff --git a/src/_includes/layout.njk b/src/_includes/layout.njk index 0ab7c9b..30f50b0 100644 --- a/src/_includes/layout.njk +++ b/src/_includes/layout.njk @@ -27,5 +27,10 @@ {{ content | safe }} </main> </body> + <footer> + <center> + <pre> <a href="https://www.gnu.org/licenses/copyleft.en.html">๐ฏ 2023-2025 Shipwreckt</a> - <a href="https://git.shipwreckt.co.uk/Website.git/">Source code</a> - <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></pre> + </center> + </footer> </html> diff --git a/src/_includes/linux.njk b/src/_includes/linux.njk index f9075dc..c3f7541 100644 --- a/src/_includes/linux.njk +++ b/src/_includes/linux.njk @@ -7,11 +7,24 @@ <title>{{ title }}</title> </head> <body> + <header> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> + <h1>{{ title }}</h1> + <p class="post-date">{{ date | dateFormat("MMMM dd, yyyy") }}</p> + </header> <article> - <header> - <h1>{{ title }}</h1> - <p class="post-date">{{ date | dateFormat("MMMM dd, yyyy") }}</p> - </header> <div class="post-content"> <hr> {{ content | safe }} @@ -21,7 +34,7 @@ {% set postTags = (page and page.data and page.data.tags) or tags or [] %} {% set displayTags = postTags | reject("equalto", "post") | list %} - <footer class="post-footer"> + <footer> <a href="/archive/linux" class="back-button">โฌ
Back to Linux</a> </footer> diff --git a/src/_includes/post.njk b/src/_includes/post.njk index 2b868ae..0becf21 100644 --- a/src/_includes/post.njk +++ b/src/_includes/post.njk @@ -8,6 +8,19 @@ </head> <body> <article> + <nav class="site-nav"> + <div class="nav-container"> + <div class="nav-left"> + <a href="/" class="site-title">Shipwreckt</a> + </div> + <ul class="nav-right"> + <li><a href="/">Home</a></li> + <li><a href="/archive/">Archive</a></li> + <li><a href="/links/">Links</a></li> + <li><a href="/contact/">Contact</a></li> + </ul> + </div> + </nav> <header> <h1>{{ title }}</h1> <p class="post-date">{{ date | dateFormat("MMMM dd, yyyy") }}</p> @@ -39,4 +52,3 @@ </body> </html> - diff --git a/src/archive/linux/Formatting_USB.md b/src/archive/linux/Formatting_USB.md index cc7fc12..cbbd63c 100644 --- a/src/archive/linux/Formatting_USB.md +++ b/src/archive/linux/Formatting_USB.md @@ -52,5 +52,3 @@ The small x represents the number of the partition; the -L flag is used to give ## Finished โ
All done! Now you have an empty USB stick you can use for all your files! - -* * * diff --git a/src/archive/linux/Terminal_Is_Better.md b/src/archive/linux/Terminal_Is_Better.md index 5cc411e..fe28055 100644 --- a/src/archive/linux/Terminal_Is_Better.md +++ b/src/archive/linux/Terminal_Is_Better.md @@ -27,4 +27,5 @@ By learning all of these command-line tools over time, you will start learning h *** -For now that is all I have on why terminal is better! +## Overview +Those are all the reasons why I think the terminal is better then the GUI! diff --git a/src/index.njk b/src/index.njk index bab1684..dedd0ab 100644 --- a/src/index.njk +++ b/src/index.njk @@ -33,5 +33,4 @@ title: Shipwreckt </li> {% endfor %} </ul> -<hr> |
