website

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

commit ffc186103f56a0ba163296ae52aa7fdbf17e2dad
parent a91d34a40428127f3cd4f11b4a62b81c2732e4b7
Author: Shipwreckt <shipwreckt@mailfence.com>
Date:   Wed, 24 Jul 2024 08:29:09 +0000

Added new post and new section on my projects

Diffstat:
Apublic/Images/art/pfp/Tux_vaporwave.png | 0
Apublic/Images/art/wallpaper/0Dublin.jpg | 0
Apublic/Images/art/wallpaper/1NewYork.jpg | 0
Mpublic/index.html | 1+
Apublic/posts/4Art | 39+++++++++++++++++++++++++++++++++++++++
Mpublic/projects.html | 5+++--
Apublic/projects/art/art | 40++++++++++++++++++++++++++++++++++++++++
7 files changed, 83 insertions(+), 2 deletions(-)

diff --git a/public/Images/art/pfp/Tux_vaporwave.png b/public/Images/art/pfp/Tux_vaporwave.png Binary files differ. diff --git a/public/Images/art/wallpaper/0Dublin.jpg b/public/Images/art/wallpaper/0Dublin.jpg Binary files differ. diff --git a/public/Images/art/wallpaper/1NewYork.jpg b/public/Images/art/wallpaper/1NewYork.jpg Binary files differ. diff --git a/public/index.html b/public/index.html @@ -25,6 +25,7 @@ <section class="posts"> <h2>Posts</h2> <ul> + <li>24-07-2024 - <a href="posts/4Art">Making some art</a></li> <li>22-07-2024 - <a href="posts/3FreeBSD">Trying out FreeBSD</a></li> <li>19-07-2024 - <a href="posts/2Summer"><b>Summer holiday!</b></a></li> <li>13-07-2024 - <a href="posts/1dwm">Switching to DWM</a></li> diff --git a/public/posts/4Art b/public/posts/4Art @@ -0,0 +1,39 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Art</title> + <link rel="stylesheet" href="../styles.css"> + <link rel="icon" href="../Images/favi.png" type="image/x-icon"> +</head> +<body> + <header> + <nav> + <ul> + <li><a href="../index.html">Home</a></li> + <li><a href="../links.html">Links</a></li> + <li><a href="../projects.html">Projects</a></li> + <li><a href="../contact.html">Contact</a></li> + </ul> + </nav> + </header> + <main class="description"> + <h2>Making some art</h2> + <h3>Date: 24/7/2024</h3> + <hr> + <p>Over the last few days in my free time, I have been messing around with <a href="https://www.gimp.org/">Gimp</a> to make some wallpapers and a profile picture. I do admit this is something I plan to do more of, so I have made a page on my <a href="../projects.html">projects page</a> for all of the art I have done! Below are some examples of what I have done so far; I am exited to do some more!</p> + + <hr> + <p>Here I have tried to give Tux a vaporwave effect.</p> + <img src="../Images/art/pfp/Tux_vaporwave.png" width="500px"> + <hr> + <p>Here are all the wallpapers I have done so far! I think the Newyork image is the best one so far.</p> + <img src="../Images/art/wallpaper/0Dublin.jpg" width="700px" alt="Dublin"> + <img src="../Images/art/wallpaper/1NewYork.jpg" width="700px" alt="Newyork"> + <hr> + <p>As normal thank you for reading!</p> + +</body> +</html> + diff --git a/public/projects.html b/public/projects.html @@ -29,10 +29,11 @@ <h2>Written works</h2> <p>- <a href="projects/writing/weeklybyte/weeklybyte">Weekly Byte</a></p> - <hr> - <a href="https://endsoftwarepatents.org/innovating-without-patents"><img style="height: 45px;" src="https://static.fsf.org/nosvn/esp/logos/patent-free.svg"></a> <h2>Misc</h2> + <p>- <a href="projects/art/art">Digital art</a></p> + <hr> + <a href="https://endsoftwarepatents.org/innovating-without-patents"><img style="height: 45px;" src="https://static.fsf.org/nosvn/esp/logos/patent-free.svg"></a> </main> </body> </html> diff --git a/public/projects/art/art b/public/projects/art/art @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Contact</title> + <link rel="stylesheet" href="../../styles.css"> + <link rel="icon" href="../../Images/favi.png" type="image/x-icon"> +</head> +<body> + <header> + <nav> + <ul> + <li><a href="../../index.html">Home</a></li> + <li><a href="../../links.html">Links</a></li> + <li><a href="../../projects.html">Projects</a></li> + <li><a href="../../contact.html">Contact</a></li> + </ul> + </nav> + </header> + <main class="description"> + <h1>Digital art</h1> + <p>On this page is a collection of art I have made over time. There are two categories: profile pictures and wallpapers. Have a look around, and feel free to use all this art without asking-I don't mind!</p> + <p>If you are curious I use <a href="https://www.gimp.org/">Gimp</a> for all of my art.</p> + <hr> + <h2>Profile pictures</h2> + <img src="../../Images/art/pfp/Tux_vaporwave.png" width="500px"> + <hr> + <h2>Wallpapers</h2> + <p>As of right now my favourite wallpaper is the edit of Newyork I have done!</p> + <p>Dublin</p> + <img src="../../Images/art/wallpaper/0Dublin.jpg" width="700px" alt="Dublin"> + <p>Newyork</p> + <img src="../../Images/art/wallpaper/1NewYork.jpg" width="700px" alt="Newyork"> + + + </main> +</body> +</html> +