commit adb386f1432653a116442586f819e62f90c7e602
parent 1dc5a350dd6d50cc0c5f21857313c583e0e97d5a
Author: Luke Willis <lukejw@loquat.dev>
Date: Mon, 25 Aug 2025 19:04:53 -0400
Some changes
Diffstat:
5 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -1 +1,2 @@
site
+img
diff --git a/css/style.css b/css/style.css
@@ -50,6 +50,11 @@ a:hover {
color: var(--cy-2);
}
+img {
+ display: block;
+ max-width: 100%;
+}
+
#header {
padding: 1rem;
}
diff --git a/grug.scm b/grug.scm
@@ -55,10 +55,11 @@
#:template site-template)
(copy-directory
"css")
+ ;; The images are not stored in git. Sorry!
(copy-directory
"img"))
#:publishers (list (rsync-publisher #:user "lukejw"
#:host "monastech.xyz"
#:destination "/var/www/htdocs/www.monastech.xyz/"
- #:flags (cons "--rsync-path=openrsync"
- %default-rsync-flags))))
+ #:flags (cons* "--rsync-path=openrsync"
+ %default-rsync-flags))))
diff --git a/pages/examples.md b/pages/examples.md
@@ -1,2 +1,5 @@
`((title . "Examples") (subtitle . "Tangible, practical usages"));`
-Coming soon!
+Here is my personal operating system:
+
+
+More examples coming soon!
diff --git a/pages/services.md b/pages/services.md
@@ -1,2 +1,2 @@
-`((title . "Services") (subtitle . "What I can do for you"))
+`((title . "Services") (subtitle . "What I can do for you"));`
Coming soon!