diff --git a/assets/styles/main.css b/assets/styles/main.css index c03d751..d4c06f6 100644 --- a/assets/styles/main.css +++ b/assets/styles/main.css @@ -96,6 +96,10 @@ main { .pull-left { max-width: 25%; } + + .w-md-50 { + width: 50%; + } } h1 small { @@ -113,3 +117,7 @@ h1 { .dogear { clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 25%, 75% 0); } + +.fa-stack-top { + vertical-align: top; +} diff --git a/content/_index.html b/content/_index.html new file mode 100644 index 0000000..6dcd67a --- /dev/null +++ b/content/_index.html @@ -0,0 +1,163 @@ +--- +title: Home +cardImage: charolette +motto: My name is Thomas Christensen
I am Milliron X +description: The homepage of Thomas A. Christensen II +--- + +

What is a "Milliron X"?

+ +

+ It's a + cattle brand, + of course! My cattle brand! +

+ +

+ The milliron is the bar with a bend in the middle. It does not + represent anything physical or textual per se, and is therefore a + rather unique element in cattle brands. Millirons are difficult to modify into + another brand, and provide a guarantee of authentic ownership. +

+ +

+ X is the letter of mystery and mystique. For nerds, it's the + unknown in any algebra problem. Ranchers and cowboys will associate it with + big names like the "Bar X" and the "Double X." In either case, it lends itself + to a sense of withholding, prestige, and power. +

+ +

+ Together, these two symbols represent the qualities I strive for in each of my + works: authenticity, originality, power, depth, and prestige. +

+ +

Who am I?

+ +{{% imgproc me-and-lady Resize "768x" "float-md-end w-md-50 p-3" %}} +Image courtesy [Guy McCutcheon Photography](https://www.guymccutcheon.com/) +{{% /imgproc %}} + + +

I am

+ + + +

+ I've got a soft spot for Brown Swiss dairy cows (just in case you couldn't + tell by the pictures), and am sometimes called "one of those crazy, Wyoming + dairy cow people." I love anything to do with cattle or technology, but + especially anything to do with both of them. +

+ +

+ + Christian, American, Convervative, Pro-gun, Heterosexual - any questions? + +

+ +

Where am I?

+ +{{% imgproc wy-in-ks Resize "768x" "float-md-start w-md-50 p-3" /%}} + +

+ I am a Wyomingite sojurning in Kansas. That ought to lead to some interesting + stories. +

+ +Around the web you can find me at (in order of subjective importance) + + + +
+ +
+
+

+ This list is intended to verify my identity on other sites. Please do + not use it as fodder to try and "follow" me on each of these + platforms. I stand with RMS: +

+
+
+

+ Facebook is a bad place for a person to be. When people find us on + Facebook, we lead them away from Facebook and then talk with them + elsewhere. +

+
+ +
+

+ I typically don't respond to inqueries made on these platforms. Please use + my contact form, instead. +

+
+
diff --git a/content/_index.md b/content/_index.md deleted file mode 100644 index f1c6a4c..0000000 --- a/content/_index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: Home -cardImage: charolette -motto: My name is Thomas Christensen
I am Milliron X -description: The homepage of Thomas A. Christensen II ---- - -## Milliron X - The homepage of Thomas A. Christensen II - -I am an engineer by training, a rancher by upbringing, a techie by experience, -and a filmmaker at heart. I've got a soft spot for Brown Swiss dairy cows (just -in case you couldn't tell by the background image), and am sometimes called "one -of those crazy, Wyoming dairy cow people." I love anything to do with cattle or -technology, but especially anything to do with both of them. - -_Christian, American, Conservative, Pro-gun, Heterosexual - any questions?_ - -### What is a "Milliron X"? - -#### It's a [cattle brand], of course! My cattle brand! - -The **milliron** is the bar with a bend in the middle. It does not represent -anything physical or textual _per se_, and is therefore a rather unique element -in cattle brands. Millirons are difficult to modify into another brand, and -provide a guarantee of authentic ownership. - -**X** is the letter of mystery and mystique. For nerds, it's the unknown in any -algebra problem. Ranchers and cowboys will associate it with big names like the -"Bar X" and the "Double X." In either case, it lends itself to a sense of -withholding, prestige, and power. - -Together, these two symbols represent the qualities I strive for in each of my -works: authenticity, originality, power, depth, and prestige. - -[cattle brand]: https://en.wikipedia.org/wiki/Livestock_branding diff --git a/content/me-and-lady.jpg b/content/me-and-lady.jpg new file mode 100644 index 0000000..6715211 Binary files /dev/null and b/content/me-and-lady.jpg differ diff --git a/content/wy-in-ks.png b/content/wy-in-ks.png new file mode 100644 index 0000000..daac943 Binary files /dev/null and b/content/wy-in-ks.png differ diff --git a/layouts/shortcodes/imgproc.html b/layouts/shortcodes/imgproc.html new file mode 100644 index 0000000..8855b52 --- /dev/null +++ b/layouts/shortcodes/imgproc.html @@ -0,0 +1,27 @@ + +{{ $img := .Page.Resources.GetMatch (printf "*%s*" (.Get 0)) }} +{{ $command := .Get 1 }} +{{ $options := .Get 2 }} +{{ $figclass := .Get 3 }} +{{ $imgclass := .Get 4 }} +{{ if eq $command "Fit"}} + {{ $img = $img.Fit $options }} +{{ else if eq $command "Resize"}} + {{ $img = $img.Resize $options }} +{{ else if eq $command "Fill"}} + {{ $img = $img.Fill $options }} +{{ else if eq $command "Crop"}} + {{ $img = $img.Crop $options }} +{{ else }} + {{ errorf "Invalid image processing command: Must be one of Crop, Fit, Fill or Resize."}} +{{ end }} +
+ + {{ with .Inner }} +
+ + {{ . | markdownify }} + +
+ {{ end }} +