From ea97d7f3293dbd2db38882df8afe63194b8913b8 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 26 Jul 2024 11:26:34 -0500 Subject: [PATCH] refactor: yank the credits page --- assets/templates/footer.html | 1 - assets/templates/static/credits.html | 52 ---------------------------- src/main.rs | 2 +- 3 files changed, 1 insertion(+), 54 deletions(-) delete mode 100644 assets/templates/static/credits.html diff --git a/assets/templates/footer.html b/assets/templates/footer.html index 8cde874..23a95a0 100644 --- a/assets/templates/footer.html +++ b/assets/templates/footer.html @@ -2,6 +2,5 @@ diff --git a/assets/templates/static/credits.html b/assets/templates/static/credits.html deleted file mode 100644 index 698b6eb..0000000 --- a/assets/templates/static/credits.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - Credits - - - - - -{% include "nav.html" %} - - -
-

Some People I owe an awful lot to

-

In no particular order, and perhaps not exhaustive:

-
-
Matthew Thomas
-
A connoisseur of C# and the Dotnet ecosystem. A mentor and friend. He showed me the deep, dark, hell-hole of - Powershell and Azure Pipelines (which are basically reskinned and nerfed Github workflows). When I worked with - him, he held nothing but kindness for everyone and was always open to new ideas, no matter how out there they - were. His presence gave me the necessary backing to entirely overhaul our noodly pipelines, may they rest - unscrambled. Oh, also, Windows user 🤮.
-
Kirk Kelly
-
Kirk was to me a friend first, manager last. He supported me without fail in all situations. He cared, and I - assume he still does, for those he worked with as firstmost the person they were, coworker last. No matter the - scenario he always had sympathy and was a font of knowledge I perhaps didn't take advantage of enough in - hindsight. Kirk, among all folks I've met, is one of those I hold in high regard.
-
Josh Beck
-
Although I have not spoken to him in many years, he taught me the foundation of all computer knowledge I - possess and imparted to me my curiosity for computing. Under him I learned networking (though I never - did get my CCNA, perhaps I should get around to that), my fundamentals in Linux, cybersecurity, server - management, and the unfun hell of tearing apart old Dell Optiplex computers and many other things. Without him I - imagine programming and all other things in computing I care for would not be my main focus today. He nurtured - that passion and put up with all sorts of hijinks when I was learning from him. I have not spoken to him in some - years, but if in some way, or somehow, he ever comes across this I hope he knows I hold him perhaps the highest - among all.
-
Jacob Sanders
-
If not for him I think I would be even more "lost in the sauce" as it were. While he did not "teach" me in the - traditional sense, he showed me true enterprise applications, pipelines, containerization, better ways to - program, and absolutely could hammer the shit out of you with an exe sword in Mordhau. Because of him I - luckily didn't spend two years only screwing around on video games (though I did a lot of that), and - instead did some productive and worthwhile things. Had I not met him I don't think I would've built up the - ability to learn new things as quickly as I can, nor have the interest to do so. I'm done playing, let's go - do some programmy. ~ Jacob Sanders. Also, Mac user 🤮.
-
-
- - -{% include "footer.html" %} - - \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index 42532ee..7ade5fe 100644 --- a/src/main.rs +++ b/src/main.rs @@ -110,7 +110,7 @@ fn main() -> anyhow::Result<()> { // TODO: Refactor this so we recursively walk a directory and get these instead of updating a // vec everytime - let static_pages = vec!["home.html", "credits.html", "contact.html"]; + let static_pages = vec!["home.html", "contact.html"]; let static_context = tera::Context::new(); for static_page in static_pages {