From b1245d9fc04d987e618d6276cd3d3ca7c94f998c Mon Sep 17 00:00:00 2001 From: Primrose Date: Thu, 13 Jun 2024 19:58:57 -0400 Subject: [PATCH] Remove old site assets --- error-pages/403.html | 20 ------------------ error-pages/404.html | 20 ------------------ error-pages/500.html | 20 ------------------ index.html | 34 ------------------------------- site-directory/index.html | 35 ------------------------------- style.css | 43 --------------------------------------- 6 files changed, 172 deletions(-) delete mode 100644 error-pages/403.html delete mode 100644 error-pages/404.html delete mode 100644 error-pages/500.html delete mode 100644 index.html delete mode 100644 site-directory/index.html delete mode 100644 style.css diff --git a/error-pages/403.html b/error-pages/403.html deleted file mode 100644 index ea16e59..0000000 --- a/error-pages/403.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Unauthorized - Primrose's Cafe - - - - - -
-

403 - Unauthorized

- -

It looks like you don't have the proper permissions to access this resource.

- 🏠 Back to Home -
- - diff --git a/error-pages/404.html b/error-pages/404.html deleted file mode 100644 index 96e4a1a..0000000 --- a/error-pages/404.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Not Found - Primrose's Cafe - - - - - -
-

404 - Not Found

- -

The server was not able to find the resource that you have requested.

- 🏠 Back to Home -
- - diff --git a/error-pages/500.html b/error-pages/500.html deleted file mode 100644 index 107a04e..0000000 --- a/error-pages/500.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Internal Server Error - Primrose's Cafe - - - - - -
-

500 - Internal Server Error

- -

The server has experienced an internal error, and was not able to process your request.

-

If this error persists, notify the webmistress by sending an email to primrose[at]primrose[dot]cafe.

-
- - diff --git a/index.html b/index.html deleted file mode 100644 index 10c9dd3..0000000 --- a/index.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - Home - Primrose's Cafe - - - - - -

Welcome to Primrose's Cafe

-
-

Welcome to my website. My name is Primrose. You can use either the she/her or they/them pronouns to refer to me, I do not mind either.

-

I love anything to do with computer hardware or software. I am a very passionate Unix enthusiast, and have good experience with the Linux family of systems, as well as the BSDs. I also take interest in computer networks as well, and maintain a little homelab setup with quite a few pieces of enterprise networking equipment.

-

If your looking for a list of everything this site has to offer, take a look at the site directory.

-

If you would like to get in contact with me, the best way to do so is by sending an email to my inbox at primrose[at]primrose[dot]cafe.

-
-
-
-
-
-
-
-
-
- - - diff --git a/site-directory/index.html b/site-directory/index.html deleted file mode 100644 index 21459fb..0000000 --- a/site-directory/index.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - Site Directory - Primrose's Cafe - - - - - -

Site Directory

-
- 🏠 Back to Home -
-
-

1. Blog - blog.primrose.cafe

-

2. Media Repository - primrose.cafe/media

-

3. Photography - primrose.cafe/photography

-

4. Forgejo (Git) - git.primrose.cafe

-
-
-
-
-
-
-
- - - diff --git a/style.css b/style.css deleted file mode 100644 index b78dc27..0000000 --- a/style.css +++ /dev/null @@ -1,43 +0,0 @@ -/* Copyright © 2022-2024 Primrose */ -/* See the LICENSE file at https://git.primrose.cafe/primrose/website/src/branch/main/LICENSE for copyright and licensing details */ - - -@font-face { - font-family: quicksand-regular; - src: url(https://primrose.cafe/assets/fonts/Quicksand-Regular.ttf); -} - -body { - color: #ffffff; - background-image: url(/assets/images/background.jpg); - background-attachment: fixed; - background-position: center; - background-size: 900px; - text-align: center; - font-family: quicksand-regular; -} - -a { - color: #ffffff; -} - -.content { - margin: auto; - width: 60%; -} - -.footer { - position: fixed; - bottom: 0px; - width: 100%; -} - -.button { - text-decoration: none; - background-color: rgba(255, 255, 255, 0.2); - backdrop-filter: blur(10px); - -webkit-backdrop-filter: blur(10px); - display: inline-block; - border-radius: 15px; - padding: 10px 10px; -}