diff options
author | Blaise Thompson <blaise@untzag.com> | 2021-07-05 15:42:38 -0500 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2021-07-05 15:42:38 -0500 |
commit | 92ece015bf23e0d078b8798e52d10a6cdfe7010c (patch) | |
tree | 02bad14238bfc3f4611f333dd4c6e6bf6e64f688 /public | |
parent | 70f88e4d34cb18ddf75f56c14e4aa2531b694952 (diff) |
refactor to build using python
Diffstat (limited to 'public')
-rw-r--r-- | public/index.html | 51 | ||||
-rw-r--r-- | public/style.css | 18 |
2 files changed, 0 insertions, 69 deletions
diff --git a/public/index.html b/public/index.html deleted file mode 100644 index ed1fa27..0000000 --- a/public/index.html +++ /dev/null @@ -1,51 +0,0 @@ -<!DOCTYPE html> -<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> -<html> -<head> - <meta charset="utf-8" name="viewport" content="width=80ch"> - <title>blaise.zone</title> - <link rel="stylesheet" href="style.css"> -</head> -<body> - <h1>blaise.zone</h1> - <hr> - <p> - Welcome to Blaise Thompson's personal website!<br> - This page simply links to all of my public profiles & projects.<br> - Thanks for stopping by! —Blaise (<a href="http://pronoun.is/he">pronoun.is/he</a>) - </p> - <h2>professional</h2> - <p> - <a href="http://cv.blaise.zone"><i>curriculum vitae</i></a><br> - <a href="https://www.linkedin.com/in/untzag/">LinkedIn</a><br> - <a href="https://orcid.org/0000-0002-3845-824X">ORCID</a><br> - <a href="https://scholar.google.com/citations?user=mvbHkywAAAAJ&hl=en">Google Scholar</a><br> - <a href="https://shops.chem.wisc.edu/electronics/">Chemistry Electronics Shop</a><br> - </p> - <h2>personal</h2> - <p> - <a href="http://agenda.blaise.zone">agenda</a></br> - <a href="http://blog.blaise.zone">blog</a></br> - <a href="http://memories.blaise.zone">memories</a></br> - <a href="https://mastodon.social/@untzag">Mastodon</a><br> - <a href="https://steamcommunity.com/id/saible/">Steam</a><br> - </p> - <h2>development</h2> - <p> - <a href="https://github.com/untzag">GitHub</a><br> - <a href="https://gitlab.com/untzag">GitLab</a><br> - <a href="https://pypi.org/user/untzag/">PyPI</a><br> - <a href="https://readthedocs.org/profiles/untzag/">Read the Docs</a><br> - </p> - <h2>projects</h2> - <p> - <a href="https://yaq.fyi/">yaq</a><br> - <a href="http://wright.tools/">WrightTools</a><br> - <a href="http://mechatronics.blaise.zone/">mechatronics</a><br> - </p> - <hr> - <p> - <a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0</a>: no copyright - </p> -</body> -</html> diff --git a/public/style.css b/public/style.css deleted file mode 100644 index 9cff696..0000000 --- a/public/style.css +++ /dev/null @@ -1,18 +0,0 @@ -a { - text-decoration: none; - color: #81a2be; -} - -body { - font-family: 'DejaVu Sans Mono', monospace; - margin: 40px auto; - min-width: 80ch; - max-width: 80ch; - line-height: 1.5; - font-size: 16px; - background-color: #1d1f21; - color: #c5c8c6; - padding: 0 10px; - text-align: left; - overflow-y: scroll; -} |