From 92ece015bf23e0d078b8798e52d10a6cdfe7010c Mon Sep 17 00:00:00 2001 From: Blaise Thompson Date: Mon, 5 Jul 2021 15:42:38 -0500 Subject: refactor to build using python --- templates/footer.html | 12 ++++++++++ templates/index.html | 46 +++++++++++++++++++++++++++++++++++ templates/style.css | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 124 insertions(+) create mode 100644 templates/footer.html create mode 100644 templates/index.html create mode 100644 templates/style.css (limited to 'templates') 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 @@ +
+ +

+built {{ date }} +

+CC0: no copyright +(source) +
+

+ + + 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 @@ + + + + + + blaise.zone + + + +

blaise.zone

+
+

+ Welcome to Blaise Thompson's personal website!
+ This page simply links to all of my public profiles & projects.
+ Thanks for stopping by! —Blaise (pronoun.is/he) +

+

professional

+

+ curriculum vitae
+ LinkedIn
+ ORCID
+ Google Scholar
+ Chemistry Electronics Shop
+

+

personal

+

+ agenda
+ blog
+ memories
+ Mastodon
+ Steam
+

+

development

+

+ GitHub
+ GitLab
+ PyPI
+ Read the Docs
+

+

projects

+

+ yaq
+ WrightTools
+ mechatronics
+

+{% 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; +} -- cgit v1.2.3