aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2021-07-05 15:42:38 -0500
committerBlaise Thompson <blaise@untzag.com>2021-07-05 15:42:38 -0500
commit92ece015bf23e0d078b8798e52d10a6cdfe7010c (patch)
tree02bad14238bfc3f4611f333dd4c6e6bf6e64f688 /templates
parent70f88e4d34cb18ddf75f56c14e4aa2531b694952 (diff)
refactor to build using python
Diffstat (limited to 'templates')
-rw-r--r--templates/footer.html12
-rw-r--r--templates/index.html46
-rw-r--r--templates/style.css66
3 files changed, 124 insertions, 0 deletions
diff --git a/templates/footer.html b/templates/footer.html
new file mode 100644
index 0000000..10419e2
--- /dev/null
+++ b/templates/footer.html
@@ -0,0 +1,12 @@
+<hr>
+
+<p style="display:inline;">
+built {{ date }}
+<div style="float:right;">
+<a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0</a>: no copyright
+(<a href="http://git.blaise.zone/website/blog.git/">source</a>)
+</div>
+</p>
+
+</body>
+</html>
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..c27acac
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,46 @@
+<!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&amp;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>
+{% include "footer.html" %}
diff --git a/templates/style.css b/templates/style.css
new file mode 100644
index 0000000..9f19e42
--- /dev/null
+++ b/templates/style.css
@@ -0,0 +1,66 @@
+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;
+}
+
+h2 {
+ font-size: 16px;
+}
+
+pre {
+ width: 80ch;
+ padding: 15px;
+ margin-left: auto;
+ margin-right: auto;
+ overflow: auto;
+ overflow-y: hidden;
+ font-size: 15.3px;
+ background: #111314;
+ border: 1px solid #c5c8c6;
+}
+
+code {
+ background: #111314;
+ color: #de935f
+}
+
+figure {
+ width: 100%;
+ margin: 0px auto;
+ margin-bottom: 1em;
+}
+
+audio {
+ width: 100%;
+}
+
+img {
+ width: 100%;
+}
+
+table {
+ width: 100%;
+}
+
+table, th, td {
+ border: 1px solid #969896;
+ border-collapse: collapse;
+}
+
+th, td {
+ padding: 5px;
+}