From 6f8f10cb8c5b89e7f0de959c629551949dce22ad Mon Sep 17 00:00:00 2001 From: Andrew Yu Date: Sat, 13 Aug 2022 21:54:15 +0200 Subject: Initial setup. --- 404.html | 20 ++++++++++++++++++++ Makefile | 2 ++ index.html | 17 +++++++++++++++++ sitemap.txt | 3 +++ style.css | 8 ++++++++ template.html | 16 ++++++++++++++++ 6 files changed, 66 insertions(+) create mode 100644 404.html create mode 100644 Makefile create mode 100644 index.html create mode 100644 sitemap.txt create mode 100644 style.css create mode 100644 template.html diff --git a/404.html b/404.html new file mode 100644 index 0000000..f8c9404 --- /dev/null +++ b/404.html @@ -0,0 +1,20 @@ + + + + Not Found + + + + +

Not Found

+
+

The requested file does not exist on this World Wide Web server.

+

Many links have changed over time, thus links to here may break. The homepage might get you there.

+

This Website's history is logged in a Git repository. The file you're looking for may be in there.

+
+ + + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9759929 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +sitemap: + find . -name '*.html' | sed 's/^\./https:\/\/evosaur.andrewyu.org/' | tee sitemap.txt diff --git a/index.html b/index.html new file mode 100644 index 0000000..ba3681a --- /dev/null +++ b/index.html @@ -0,0 +1,17 @@ + + + + The Evosaur Project + + + + + +

The Evosaur Project

+

Egg

+ + + diff --git a/sitemap.txt b/sitemap.txt new file mode 100644 index 0000000..f34cd94 --- /dev/null +++ b/sitemap.txt @@ -0,0 +1,3 @@ +https://evosaur.andrewyu.org/template.html +https://evosaur.andrewyu.org/404.html +https://evosaur.andrewyu.org/index.html diff --git a/style.css b/style.css new file mode 100644 index 0000000..954e71d --- /dev/null +++ b/style.css @@ -0,0 +1,8 @@ +body { + background-color: #F8F4E7; + color: #552800; +} + +a.link {color: #0000A0;} +a.visited {color: #A000A0;} +a.active {color: #00A000;} diff --git a/template.html b/template.html new file mode 100644 index 0000000..4cef5a3 --- /dev/null +++ b/template.html @@ -0,0 +1,16 @@ + + + + <++> + + + + + +

<++>

+ + + -- cgit v1.2.3