website

This is my amazing website!
git clone git://shipwreckt.co.uk/website
Log | Files | Refs | README | LICENSE

index.html (3328B)


      1 <!DOCTYPE html>
      2 <html lang="en-GB">
      3   <head>
      4     <meta charset="UTF-8">
      5     <meta name="author" content="Shipwreckt">
      6     <meta name="viewport" content="width=device-width, initial-scale=1.0">
      7     <title>Shipwreckt</title>
      8     <link rel="stylesheet" href="styles.css">
      9     <link rel="icon" href="Images/favi.png" type="image/x-icon">
     10   </head>
     11   <body>
     12     <header>
     13       <nav>
     14         <ul>
     15           <li><a href="index.html">Home</a></li>
     16           <li><a href="links.html">Links</a></li>
     17           <li class="logo"><a href="index.html"><img src="Images/misc/logo.png" alt="Logo"></a></li>
     18           <li><a href="projects.html">Projects</a></li>
     19           <li><a href="contact.html">Contact</a></li>
     20         </ul>
     21       </nav>
     22     </header>
     23     <main>
     24       <p>Hello there! I am Shipwreckt, and I am 15 years old. I am from the UK, and I have a great passion for computers and all things revolving around them, such as software and hardware. I mostly focus on learning and working with the Linux operating system. To see what I am up to right now, click <a href="about/todo">here</a>.</p>
     25 
     26       <p><a href="about/software.html">Software</a> that I use.</p>
     27       <section class="posts">
     28         <h2>Posts</h2>
     29         <ul>
     30           <li>21-02-2025 - <a href="posts/17Server.html">VPS server 🗄️</a></li>
     31           <li>16-02-2025 - <a href="posts/16PC.html">New PC case!</a></li>
     32           <li>16-12-2024 - <a href="posts/15Christmas.html">Christmas 🎅</a></li>
     33           <li>01-12-2024 - <a href="posts/14Email.html">Email and Life update</a></li>
     34           <li>22-09-2024 - <a href="posts/13I2P.html">Trying out I2P 🕵️</a></li>
     35           <li>18-09-2024 - <a href="posts/12Pihole.html">Pihole on Arch server</a></li>
     36           <li>07-09-2024 - <a href="posts/11School.html">School</a></li>
     37           <li>31-08-2024 - <a href="posts/10Gentoo.html">Installing Gentoo Linux</a></li>
     38           <li>28-08-2024 - <a href="posts/09Kernel.html">Compiling the Linux Kernel 🐧</a></li>
     39           <li>26-08-2024 - <a href="posts/08ArchServer.html">Arch server!</a></li>
     40           <li>17-08-2024 - <a href="posts/07FishShell.html">Trying out fish 🐟</a></li>
     41           <li>17-08-2024 - <a href="posts/06NewLaptop.html">New Laptop !</a></li>
     42           <li>03-08-2024 - <a href="posts/05Yubikeys.html">Yubikeys!</a></li>
     43           <li>27-07-2024 - <a href="posts/04Servers.html">Messing with servers</a></li>
     44           <li>24-07-2024 - <a href="posts/03Art.html">Making some art</a></li>
     45           <li>22-07-2024 - <a href="posts/02FreeBSD.html">Trying out FreeBSD</a></li>
     46           <li>19-07-2024 - <a href="posts/01Summer.html"><b>Summer holiday!</b></a></li>
     47           <li>13-07-2024 - <a href="posts/00dwm.html">Switching to DWM</a></li>
     48         </ul>
     49       </section>
     50       <section class="posts">
     51         <h2>Articles</h2>
     52         <ul>
     53           <li>24-08-2024 - <a href="articals/linuxlist.html">Articles about Linux 🖥️🐧</a></li>
     54           <li>15-08-2024 - <a href="articals/programminglist.html">Articles about Programming 👨‍💻</a></li>
     55           <li>08-08-2024 - <a href="articals/internetlist.html">Articles about the Internet 🌐</a></li>
     56           <li>07-08-2024 - <a href="articals/neovimlist.html">Neovim run through 🧠</a></li>
     57         </ul>
     58       </section>
     59     </main>
     60   </body>
     61 </html>
     62 
     63