From 1909072f55504bb63fbfb5c4cbf73f4a3dcba14e Mon Sep 17 00:00:00 2001
From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com>
Date: Sat, 18 Mar 2023 21:23:46 -0500
Subject: [PATCH 1/6] fix: Add static files back into mount config
---
config.toml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/config.toml b/config.toml
index ff79378..b6b5145 100644
--- a/config.toml
+++ b/config.toml
@@ -12,6 +12,10 @@ motto = ""
[module]
+[[module.mounts]]
+source = "static"
+target = "static"
+
[[module.mounts]]
source = "assets/graphics"
target = "assets/graphics"
From da20f247f2d1207987220e3cf7a5f371ab2cc35c Mon Sep 17 00:00:00 2001
From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com>
Date: Sat, 18 Mar 2023 20:33:12 -0500
Subject: [PATCH 2/6] refactor: Move sidebar content into partial page
---
layouts/_default/baseof.html | 72 +----------------------------------
layouts/partials/sidebar.html | 69 +++++++++++++++++++++++++++++++++
2 files changed, 70 insertions(+), 71 deletions(-)
create mode 100644 layouts/partials/sidebar.html
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 19fbaa0..13f07a1 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -18,77 +18,7 @@
-
+ {{ partial "sidebar" . }}
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
new file mode 100644
index 0000000..42b5f08
--- /dev/null
+++ b/layouts/partials/sidebar.html
@@ -0,0 +1,69 @@
+{{ $millironx := resources.Get "graphics/millironx.svg" }}
+
From 948cc7a19a80f9f46fa79572b34d9894d57d5702 Mon Sep 17 00:00:00 2001
From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com>
Date: Sat, 18 Mar 2023 20:53:07 -0500
Subject: [PATCH 3/6] feat: Switch sidebar to use Hugo menu
---
content/_index.html | 6 +++++
content/academia/_index.md | 7 +++++
content/ai/_index.md | 6 +++++
content/contact/_index.html | 7 +++++
content/videos/_index.md | 5 ++++
content/websites/_index.md | 6 +++++
layouts/partials/sidebar.html | 49 ++++++++++-------------------------
7 files changed, 51 insertions(+), 35 deletions(-)
diff --git a/content/_index.html b/content/_index.html
index 1c1e3a7..66a7a7c 100644
--- a/content/_index.html
+++ b/content/_index.html
@@ -4,6 +4,12 @@ cardImage: charolette
motto: My name is Thomas Christensen
I am Milliron X
description: The homepage of Thomas A. Christensen II
layout: _default/list
+menu:
+ main:
+ params:
+ prefix: fad
+ icon: fa-home
+ weight: -1000
---
What is a "Milliron X"?
diff --git a/content/academia/_index.md b/content/academia/_index.md
index 390da5b..f4b87eb 100644
--- a/content/academia/_index.md
+++ b/content/academia/_index.md
@@ -3,6 +3,13 @@ title: Academic Publications and Presentations
motto: Publications and Presentations
cardImage: library
decription: A list of my academic publications
+menu:
+ main:
+ name: Academia
+ params:
+ prefix: fad
+ icon: fa-university
+ weight: 20
---
### Academic Papers
diff --git a/content/ai/_index.md b/content/ai/_index.md
index d9fd664..4efbf08 100644
--- a/content/ai/_index.md
+++ b/content/ai/_index.md
@@ -4,6 +4,12 @@ cardImage: Ai-calf
motto: Artificial Insemination
description:
Advertising page to try and sell my artificial insemination services
+menu:
+ main:
+ params:
+ prefix: fax
+ icon: fa-bull-sperm
+ weight: 30
---
I am licensed in the Great State of Wyoming as a food animal artificial
diff --git a/content/contact/_index.html b/content/contact/_index.html
index 6d62e29..111ea2e 100644
--- a/content/contact/_index.html
+++ b/content/contact/_index.html
@@ -3,6 +3,13 @@ title: Contact Me
cardImage: venice-mailbox
motto: Contact Me
description: Contact form to get ahold of me
+menu:
+ main:
+ name: Contact
+ params:
+ prefix: fad
+ icon: fa-file-signature
+ weight: 1
---
From 5e27500c8c37fab14745adb38b31bdf507064671 Mon Sep 17 00:00:00 2001
From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com>
Date: Sat, 18 Mar 2023 21:14:34 -0500
Subject: [PATCH 4/6] feat: Add vector version of branded bull image
---
assets/graphics/brandedbull.svg | 420 ++++++++++++++++++++++++++++++++
1 file changed, 420 insertions(+)
create mode 100644 assets/graphics/brandedbull.svg
diff --git a/assets/graphics/brandedbull.svg b/assets/graphics/brandedbull.svg
new file mode 100644
index 0000000..7188e7a
--- /dev/null
+++ b/assets/graphics/brandedbull.svg
@@ -0,0 +1,420 @@
+
+
+
+
From f79f4a4aaa0bdd939faf1b2e63d38603ebc43a2f Mon Sep 17 00:00:00 2001
From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com>
Date: Sat, 18 Mar 2023 21:15:36 -0500
Subject: [PATCH 5/6] refactor: Use vector bull in footer
---
layouts/_default/baseof.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 13f07a1..7360ca8 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -41,8 +41,8 @@