summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Yu <andrew@andrewyu.org>2022-08-13 21:54:15 +0200
committerAndrew Yu <andrew@andrewyu.org>2022-08-13 21:54:15 +0200
commit6f8f10cb8c5b89e7f0de959c629551949dce22ad (patch)
tree3375e52899a95433c6f9b0b2ed6e858d818a474d
downloadwebsite-6f8f10cb8c5b89e7f0de959c629551949dce22ad.tar.gz
website-6f8f10cb8c5b89e7f0de959c629551949dce22ad.zip
Initial setup.
-rw-r--r--404.html20
-rw-r--r--Makefile2
-rw-r--r--index.html17
-rw-r--r--sitemap.txt3
-rw-r--r--style.css8
-rw-r--r--template.html16
6 files changed, 66 insertions, 0 deletions
diff --git a/404.html b/404.html
new file mode 100644
index 0000000..f8c9404
--- /dev/null
+++ b/404.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
+ <head>
+ <title>Not Found</title>
+ <link rel="stylesheet" href="/plain.css" />
+ <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
+ </head>
+ <body>
+ <h1>Not Found</h1>
+ <div id="main">
+ <p>The requested file does not exist on this World Wide Web server.</p>
+ <p>Many links have changed over time, thus links to here may break. <a href="/">The homepage</a> might get you there.</p>
+ <p>This Website's history is logged in <a href="https://git.andrewyu.org/www.andrewyu.org/">a Git repository</a>. The file you're looking for may be in there.</p>
+ </div>
+ <div id="footer">
+ <hr />
+ <p><a href="/">Andrew Yu's Website</a></p>
+ </div>
+ </body>
+</html>
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 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
+ <head>
+ <title>The Evosaur Project</title>
+ <link rel="stylesheet" href="/style.css" />
+ <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
+ <meta charset="utf-8" />
+ </head>
+ <body class="indent">
+ <h1>The Evosaur Project</h1>
+ <h2>Egg</h2>
+ <div id="footer">
+ <hr />
+ <p><a href="/">The Evosaur Project</a></p>
+ </div>
+ </body>
+</html>
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 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
+ <head>
+ <title><++></title>
+ <link rel="stylesheet" href="/style.css" />
+ <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
+ <meta charset="utf-8" />
+ </head>
+ <body class="indent">
+ <h1><++></h1>
+ <div id="footer">
+ <hr />
+ <p><a href="/">The Evosaur Project</a></p>
+ </div>
+ </body>
+</html>