diff options
author | Preston Pan <preston@nullring.xyz> | 2022-11-08 10:28:58 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2022-11-08 10:28:58 -0800 |
commit | dc2fd65e6bfeaa2c475d5042f64263ac9427c22f (patch) | |
tree | 3f680c74d831c984048080e0ff7d86fb7c5f1f05 /build/website/about/index.html |
completely changed backend
Diffstat (limited to 'build/website/about/index.html')
-rw-r--r-- | build/website/about/index.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/build/website/about/index.html b/build/website/about/index.html new file mode 100644 index 0000000..e95eda9 --- /dev/null +++ b/build/website/about/index.html @@ -0,0 +1,44 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <meta name="description" content="My personal website."> + <meta name="author" content="Preston Pan"> + <link rel="stylesheet" type="text/css" href="/css/style.css" /> + + <link rel="icon" type="image/png" href="/img/favicon.png"> + <title> +About + </title> +</head> +<body> + <div class="nav" class="justcenter"> + <a href="/index.html" class="justleft">Home</a> | + <a href="/about/" class="justleft">About</a> | + <a href="/about/contact.html" class="justleft">Contact</a> + | <a href="../index.html">Back</a> + <hr> + </div> + + <div class="content"> +<h1>About Website</h1> +<p> + This website was made without complex javascript or css so that it is easy to load + and read on all browsers, including terminal and js-less browsers like netsurf. + Additionally, I wrote a shell script to generate this website automatically + from a hiearchical filesystem of html files. If you're interested, simply run: +</p> + +<code>git clone git://prestonpan.tech/prestonpan.git</code> + +<h2>Articles</h2> +<ul> + <li><a href="./contact.html">Contact</a> -- How to contact me.</li> + <li><a href="./technology.html">About Technology</a> -- about the software/hardware that I use.</li> +</ul> + + </div> +</body> +</html> |