Updated website

This commit is contained in:
114465 2024-05-17 23:40:00 -04:00
parent 71f3d07ef7
commit b857e7b8b4
17 changed files with 136 additions and 8 deletions

15
website/404.html Normal file
View File

@ -0,0 +1,15 @@
<html>
<head>
<title>
Error: 404!
</title>
<link rel="stylesheet" href="/style.css"/>
</head>
<body>
<h1>
Oh no! Your lost!
</h1>
<hr>
<a href="/">Go back home!</a>
</body>
</html>

View File

@ -10,8 +10,10 @@
About
</h1>
<hr>
<a href="/">Home</a>
<a href="/about/">About</a>
<a href="/">Home</a>
<a href="/feed/">RSS</a>
<a href="/about/">About</a>
<a href="/links/">Links</a>
<hr>
<p>
This website uses strictly html and css at the moment but I plan to use rust in future versions as a replacemnt for javascript.

8
website/feed/RSS.rss Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>RSS Feed</title>
<description>An RSS Feed that will not be used!</description>
</chammel>
</rss>

28
website/feed/index.html Normal file
View File

@ -0,0 +1,28 @@
<html>
<head>
<title>
RSS
</title>
<link rel="stylesheet" href="/style.css"/>
</head>
<body>
<h1>
RSS Feeds
</h1>
<hr>
<a href="/">Home</a>
<a href="/feed/">RSS</a>
<a href="/about/">About</a>
<a href="/links/">Links</a>
<hr>
<p style="margin-left: 5%;">
RSS files:
</p>
<hr>
<a href="/feed/RSS.rss"><img src="/icons/SerenityOS/filetype-unknown.png" alt="filetype-unknown">Site</a>
<hr>
<a href="https://git.disroot.org/114465.rss"><img src="/icons/SerenityOS/filetype-symlink.png" alt="filetype-symlink">Git</a>
<hr>
</body>
</html>

View File

@ -0,0 +1,25 @@
BSD 2-Clause License
Copyright (c) 2018-2024, the SerenityOS developers.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@ -0,0 +1,3 @@
These icons are from the SerenityOS project, go check it out here: https://github.com/SerenityOS/serenity
I am also including the license for the project with these icons. :)

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 668 B

View File

@ -1,7 +1,7 @@
<html>
<head>
<title>
Demo Site
Unnamed Site
</title>
<link rel="stylesheet" href="/style.css"/>
</head>
@ -11,10 +11,15 @@
</h1>
<hr>
<a href="/">Home</a>
<a href="/feed/">RSS</a>
<a href="/about/">About</a>
<a href="/links/">Links</a>
<hr>
<p>
This website is using a CSS stylesheet.
This website is not entirely built yet, please come back when it is done.
</p>
<p>
Want to know when this site is done? Throw the sites RSS in your feed! Oh and don't worry, I am too lazy to spam you.
</p>
</body>
</html>

BIN
website/key.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 298 B

36
website/links/index.html Normal file
View File

@ -0,0 +1,36 @@
<html>
<head>
<title>
Links
</title>
<link rel="stylesheet" href="/style.css"/>
</head>
<body>
<h1>
Links
</h1>
<hr>
<a href="/">Home</a>
<a href="/feed/">RSS</a>
<a href="/about/">About</a>
<a href="/links/">Links</a>
<hr>
<h2>
Cool Projects
</h2>
<hr>
<a href="https://serenityos.org/"><img src="/icons/SerenityOS/ladyball.png" alt="ladyball">SerenityOS</a>
<p>
The icons on this site are from this project, go check it out!
</p>
<a href="https://www.nordtheme.com/"><img src="/icons/SerenityOS/filetype-symlink.png" alt="nordtheme.com">Nord theme</a>
<p>
Most of the colors on this site are from the nord theme, consider them for your projects!
<hr>
<h2>
My links
</h2>
<hr>
</body>
</html>

View File

@ -7,6 +7,11 @@ h1 {
font-family: "Source Code Pro", monospace;
font-weight: bold;
}
h2 {
margin-left: 5%;
font-family: "Source Code Pro", monospace;
font-weight: bold;
}
p {
margin-left: 15%;
font-family: "Source Code Pro", monospace;
@ -17,10 +22,11 @@ a {
color: #5e81ac;
}
a:hover {
color: #d08770;
}
a:visited {
color: #b48ead;
}
a:hover {
color: #d08770;
}