all repos — www @ c06fb6a6f488406172b3ba5d9bc43d6ed8ff8f8e

deserthorns.net content + generator

*
sageclove
Sun, 09 Mar 2025 18:30:45 -0700
commit

c06fb6a6f488406172b3ba5d9bc43d6ed8ff8f8e

parent

5e77c232f2581a52e0f65a4820a4afba1e10ac6b

M assets/css/style.cssassets/css/style.css

@@ -76,6 +76,12 @@ display: block;

text-decoration: none; } +.child-links { + list-style: none; + padding: 0; + margin-top: 3rem; +} + a.link-card:hover, a.link-card:focus { box-shadow: 4px 4px var(--b_high);
M pages/about.htmlpages/about.html

@@ -10,10 +10,10 @@ <p>

Living in the American Southwest. My everyday interests include making music, cooking, and getting distracted by new hobbies. </p> <p> - I'd like to try fiction writing, make time for reading, and find more opportunities for photography. + I'd like to try writing, make time for reading, and find more opportunities for photography. </p> <p> - I work as a software developer. Despite that, I have a low opinion of modern technology. I am far more interested in low-tech solutions that prioritize simplicity, sustainability, and self-determination. To that end, I build simple software tools that meet my needs (this site being one such example). + I work as a software developer. My technology interests focus on solutions that prioritize sustainability, simplicity, and self-determination. </p> {{ template "child-links" .Children }}
M pages/creative.htmlpages/creative.html

@@ -5,6 +5,15 @@

{{ define "body" }} {{ template "header" . }} +<p> + Artistic pursuits and interests, really my hobbies. +</p> +<p> + I considered taking a more creativity-focused path for my career in college, even taking a few courses to that end. But getting a job changed that plan. I often wonder if I made the right choice. + In any case, I'm working to rediscover my creativity and motivation through exploration and reflection. + My chronic indecision and confidence issues make this a challenge, but art has offered an opportunity to push back on those mental constraints. +</p> + {{ template "child-links" .Children }} {{ end }}
M pages/music.htmlpages/music.html

@@ -5,6 +5,20 @@

{{ define "body" }} {{ template "header" . }} +<p> + I started looking into music-making in earnest around 2020. + Before that in college I had worked with Max/MSP for audio synthesis, as well as building a software synth as part of my capstone project for a creative coding course. +</p> +<p> + Despite having started off with synthesizers, I've since moved away from them a bit in favor of guitar. + I appreciate the immediacy and performability of guitar, and learning an instrument gives me a physical challenge to improve at. +</p> +<p> + More than anything, music has made me more comfortable with being inexperienced. + It has also made me realize that while there is always more to learn, I need to make choices and learn what is important to me. + Making those choices and settling on a direction is still my biggest challenge, but at least I can see that I've grown. +</p> + {{ end }} {{ define "scripts" }}
M pages/photography.htmlpages/photography.html

@@ -1,9 +1,36 @@

{{ define "head" }} <link rel="stylesheet" href="{{.StylePath}}"> +<style> + img { + border-radius: var(--border-radius); + display: block; + width: 80%; + margin: 0 auto 3rem; + } + @media screen and (max-width: 600px) { + img { + width: 100%; + } + } +</style> {{ end }} {{ define "body" }} {{ template "header" . }} +<img src="/assets/img/photography.jpg"> +<p> + I got interested in photography in high school. Over the years that interest came and went. I still like having a "nice" camera around for when the mood strikes. +</p> +<p> + The difficult part of photography for me is finding opportunities. + Living in a part of the world where I'm expected to drive everywhere makes it hard to be spontaneous. + Instead, I need to consciously make plans to go somewhere and take my camera. +</p> + +<h2>Camera</h2> +<p> + I shoot an Olympus OM-D E-M10, typically with Panasonic 25mm f1.4 lens. It sure isn't the newest camera, but it scratches the "nice camera" itch well enough for my needs. +</p> {{ end }}
M site.jsonsite.json

@@ -9,12 +9,8 @@ "music": {

"parent": "creative", "image": "/assets/img/music.jpg" }, - "visual": { - "parent": "creative", - "image": "/assets/img/visual.jpg" - }, "photography": { - "parent": "visual", + "parent": "creative", "image": "/assets/img/photography.jpg" }, "projects": {
M templates/child-links.htmltemplates/child-links.html

@@ -1,8 +1,12 @@

{{ define "child-links" }} +<ul class="child-links"> {{ range . }} -<a class="link-card" href="{{ .Path }}"> - <span>{{ .Title }}</span> - <img src="{{ .Image }}"> -</a> +<li> + <a class="link-card" href="{{ .Path }}"> + <span>{{ .Title }}</span> + <img src="{{ .Image }}"> + </a> +</li> {{ end }} +</ul> {{ end }}
D templates/page.html

@@ -1,11 +0,0 @@

-{{ define "head" }} -<link rel="stylesheet" href="{{.StylePath}}"> -{{ end }} - -{{ define "body" }} -{{ template "header" . }} - -{{ end }} - -{{ define "scripts" }} -{{ end }}