@@ -127,23 +127,21 @@ Around the web you can find me at (in order of subjective importance)
not use it as fodder to try and "follow" me on each of these
platforms. I stand with RMS:
-
+
+
I typically don't respond to inqueries made on these platforms. Please use
my contact form, instead.
diff --git a/layouts/shortcodes/imgproc.html b/layouts/shortcodes/imgproc.html
index f83f908..0b03338 100644
--- a/layouts/shortcodes/imgproc.html
+++ b/layouts/shortcodes/imgproc.html
@@ -14,9 +14,9 @@
{{ else }}
{{ errorf "Invalid image processing command: Must be one of Crop, Fit, Fill or Resize." }}
{{ end }}
-
-
+
--
2.45.2
From 8bab0de73845e9ff505c225ae4c110df5ba9a0f8 Mon Sep 17 00:00:00 2001
From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com>
Date: Wed, 20 Nov 2024 11:46:24 -0600
Subject: [PATCH 08/41] feat: Add CSS-only scrolling image background
---
assets/styles/millironx.css | 73 +++++++++++++++++++++++++++++++++++++
1 file changed, 73 insertions(+)
diff --git a/assets/styles/millironx.css b/assets/styles/millironx.css
index cd9d974..3275b67 100644
--- a/assets/styles/millironx.css
+++ b/assets/styles/millironx.css
@@ -254,3 +254,76 @@ blockquote small {
max-width: 50%;
}
} /* end @media */
+
+@supports (animation-timeline: scroll()) {
+ @keyframes sticky-header {
+ from {
+ height: 50vh;
+ top: 6rem;
+ }
+
+ to {
+ height: 10vh;
+ top: -1rem;
+ }
+ }
+
+ @keyframes blurry-header {
+ from {
+ filter: blur(0);
+ }
+
+ to {
+ filter: blur(2px);
+ }
+ }
+
+ @keyframes transparent-text-bg {
+ from {
+ background-color: rgba(0.33, 0.33, 0.33, 0.33);
+ }
+ to {
+ background-color: rgba(0.33, 0.33, 0.33, 0);
+ }
+ }
+
+ main {
+ position: relative;
+ top: 55vh;
+ }
+
+ .motto {
+ position: fixed;
+ top: 12rem;
+
+ animation: sticky-header linear forwards;
+ animation-timeline: scroll();
+ animation-range: 0.001vh 50vh;
+ }
+
+ .motto::before {
+ filter: blur(12px);
+
+ top: 2rem;
+
+ animation: blurry-header linear forwards;
+ animation-timeline: scroll();
+ animation-range: 0.001vh 50vh;
+ }
+
+ .motto-inside h1 {
+ animation: transparent-text-bg linear forwards;
+ animation-timeline: scroll();
+ animation-range: 0.001vh 40vh;
+ }
+
+ @media (min-width: 768px) {
+ .motto {
+ width: calc(100% - 8rem);
+ }
+
+ .motto::before {
+ top: 0;
+ }
+ }
+} /* end @supports */
--
2.45.2
From 591420c78ca851d4fd9fe5155d943f5e0af3f978 Mon Sep 17 00:00:00 2001
From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com>
Date: Wed, 20 Nov 2024 11:47:54 -0600
Subject: [PATCH 09/41] feat: Add card image descriptions
---
content/_index.html | 1 +
content/academia/_index.md | 4 +++-
content/contact/_index.html | 3 +++
content/videos/_index.md | 3 +++
content/websites/_index.md | 2 ++
5 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/content/_index.html b/content/_index.html
index b33d6af..71758fd 100644
--- a/content/_index.html
+++ b/content/_index.html
@@ -1,6 +1,7 @@
---
title: Home
cardImage: charolette
+cardImageDescription: She almost looks like she's in her native country again.
motto: My name is Thomas Christensen I am Milliron X
description: The homepage of Thomas A. Christensen II
layout: _default/list
diff --git a/content/academia/_index.md b/content/academia/_index.md
index 6eb6f79..9a9ea19 100644
--- a/content/academia/_index.md
+++ b/content/academia/_index.md
@@ -2,7 +2,9 @@
title: Academic Publications and Presentations
motto: Publications and Presentations
cardImage: library
-decription: A list of my academic publications
+cardImageDescription:
+ Personally, I preferred the Owen Library in Pullman seven miles west
+description: A list of my academic publications
menu:
main:
name: Academia
diff --git a/content/contact/_index.html b/content/contact/_index.html
index bed691c..0f641c2 100644
--- a/content/contact/_index.html
+++ b/content/contact/_index.html
@@ -1,6 +1,9 @@
---
title: Contact Me
cardImage: venice-mailbox
+cardImageDescription:
+ This mailbox was used for reporting public health offenses in Venice. It
+ survived the wrath of Napoleon because it didn't look enough like a lion.
motto: Contact Me
description: Contact form to get ahold of me
date: 2023-07-01
diff --git a/content/videos/_index.md b/content/videos/_index.md
index e555640..7b319e4 100644
--- a/content/videos/_index.md
+++ b/content/videos/_index.md
@@ -1,6 +1,9 @@
---
title: Videos
cardImage: camera
+cardImageDescription:
+ Isn't it a shame that the company that brought photography to the masses is
+ basically out of business now?
motto: Videography Portfolio
description: Showcase of my own videos
menu:
diff --git a/content/websites/_index.md b/content/websites/_index.md
index 829b010..4238346 100644
--- a/content/websites/_index.md
+++ b/content/websites/_index.md
@@ -1,6 +1,8 @@
---
title: My Websites
cardImage: eclipse
+cardImageDescription:
+ Did you know that the population of Wyoming quadrupled for one day in 2017?
motto: Websites
description: List of websites that I have worked on
menu:
--
2.45.2
From bc5f45da94276d589439dd63fd6a134a6a3fbbc1 Mon Sep 17 00:00:00 2001
From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com>
Date: Wed, 20 Nov 2024 11:48:30 -0600
Subject: [PATCH 10/41] feat!: Remove AI page
---
content/ai/_index.html | 76 ------------------------------------------
1 file changed, 76 deletions(-)
delete mode 100644 content/ai/_index.html
diff --git a/content/ai/_index.html b/content/ai/_index.html
deleted file mode 100644
index 3c6b51a..0000000
--- a/content/ai/_index.html
+++ /dev/null
@@ -1,76 +0,0 @@
----
-title: Artificial Insemination
-cardImage: Ai-calf
-motto: Artificial Insemination
-description:
- Advertising page to try and sell my artificial insemination services
-date: 2022-12-31
-menu:
- main:
- params:
- prefix: fax
- icon: fa-bull-sperm
- weight: 30
-fa-thumbnail: fax fa-bull-sperm
----
-
-
-
Cattle artificial insemination services
-
-
- I am licensed in the Great State of Wyoming as a food animal artificial
- insemination technician. I only offer AI services for cows, even though
- legally I could AI cows, goats, and sheep. My services are most
- readily available in the southeast Wyoming area or the Flint Hills of Kansas
- depending on the time of year.
-
-
-
Rate schedule
-
-
-
-
-
-
-
Insemination
-
(per cow)
-
- $25.00
-
-
5 cow minimum charge
-
-
-
Milage
-
(per mile, one-way)
-
- $1.05
-
-
2.5 mile minimum charge
-
-
-
-
-
- I will provide all equipment except semen storage (liquid
- nitrogen tank) and cattle handling (i.e., squeeze chute).
-
-
- To get started, contact me, and select the "I'm
- hiring for artificial insemination" option.
-