diff options
author | bd <bdunahu@operationnull.com> | 2024-07-15 15:53:12 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-07-15 15:53:12 -0600 |
commit | 1db1108ffcb137624ad1a592d3e88a4490c516a3 (patch) | |
tree | 4d4bb5376fa57bbd642c0043a7f98214d5ef3862 | |
parent | 1dfd93961b10e32a79081864a9e8763809bc0352 (diff) |
Lighten site css again, reword some text, temporarily remove blog
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | content/assets/site.css | 2 | ||||
-rw-r--r-- | src/operationnull/pages.scm | 27 | ||||
-rw-r--r-- | src/operationnull/theme.scm | 4 |
4 files changed, 22 insertions, 14 deletions
@@ -7,5 +7,8 @@ site: ${GUILE} -L ./src -c \ '((@ (haunt site) build-site) (@ (operationnull site) main-site))' +deploy: + scp -r target/* heimdallr:/var/www/operationnull/ + clean: rm -rf target/ diff --git a/content/assets/site.css b/content/assets/site.css index 6fbfdb2..0150282 100644 --- a/content/assets/site.css +++ b/content/assets/site.css @@ -72,7 +72,7 @@ body p { body a { text-decoration: none; - color: #3001dc; + color: #7776ff; } body a:hover { color: #841076; diff --git a/src/operationnull/pages.scm b/src/operationnull/pages.scm index 1771c8a..4340a64 100644 --- a/src/operationnull/pages.scm +++ b/src/operationnull/pages.scm @@ -6,24 +6,26 @@ (define index-content '(article (h2 "Welcome.") - (p "operationnull is a site created and run by me, bdunahu. My " - (i "real") - " name is Benjamin.") - (p "My interests often revolve around processing and manipulating text--code generation, interpreters, Norse mythology, traditional sword and sorcery, and GNU Emacs, the ultimate text-based operating system. I graduated from CSU with a B.S. in computer science in Spring 2024.") - (p "I've dabbled a bit in poetry/fiction (" - (a (@ (href "/pages/gold.html")) + (p "My name is Benjamin. operationnull is my personal site.") + (p "My interests often revolve around processing and manipulating text--code generation, interpreters, Norse mythology, traditional sword and sorcery, and GNU Emacs, the ultimate text-based operating system. I graduated from CSU with a B.S. in computer science Spring 2024.") + (p "I've dabbled in poetry/fiction (" + (a (@ (href "/gold.html")) "example") - "), though I am still an amateur writer. I am working on a short sword and sorcery piece (~10,000 words) about an outlandish werewolf named Gǫndul and her creator---the master-conjurer Gullveig, though I am not sure when it is likely to see the light of day. A few of my personal project can be found on my " + "), though I am still an amateur writer. I am working on another short sword and sorcery story (10,000+ words) about an outlandish werewolf named Gǫndul and her creator---the master-conjurer Gullveig. I am not sure if it will ever appear publicly or on this site.") + (p "A few of my personal projects can be found on my " (a (@ (href "https://git.operationnull.com/")) "git server") - ", all libre."))) + ", all of which are " + (a (@ (href "https://en.wikipedia.org/wiki/Free_software")) + "libre") + "."))) (define contact-content '(article (h2 "Contact") - (p "Contact me with inquiries about the content of this site here:") + (p "Contact me about the content of this site here:") (ul (@ (type "bullet")) (li (b "email: ") "bdunahu @ this domain")) - (p "Additionally, these accounts are/belong to me. I am not on other platforms.") + (p "Additionally, these accounts are/belong to me.") (ul (@ (type "bullet")) (li (b "IRC: ") "@ Isaz @ libera.chat") (li (b "matrix: ") "@bdunahu:tchncs.de")))) @@ -65,5 +67,8 @@ (br) "In burst fetters terror comes to bite," (br) - "and thus conclude the coward's futile plight." + "and thus conclude the " + (a (@ (href "https://norse-mythology.org/tales/odins-discovery-of-the-runes/")) + "coward's futile plight") + "." (br))))) diff --git a/src/operationnull/theme.scm b/src/operationnull/theme.scm index 1d0b144..d44881a 100644 --- a/src/operationnull/theme.scm +++ b/src/operationnull/theme.scm @@ -60,8 +60,8 @@ "git")) (li (a (@ (href "/contact.html")) "contact")) - (li (a (@ (href "/posts/")) - "blog")) + ;; (li (a (@ (href "/posts/")) + ;; "blog")) (li (a (@ (href "/")) "home"))))) ,body |