monastech-pages

The files used to build https://monastech.xyz/
Log | Files | Refs

commit b7aac334256d28b6869392ce8fc29cd7a1e2c5c6
parent d728fe081113774091c890559b780eef9f6e8291
Author: Luke Willis <lukejw@loquat.dev>
Date:   Tue, 14 Oct 2025 14:22:29 -0400

Format footer

Diffstat:
Mcss/style.css | 9+++++++++
Mgrug.scm | 13+++++--------
2 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/css/style.css b/css/style.css @@ -96,6 +96,15 @@ nav a:hover { line-height: 1.5; } +hr { + border: 0.1rem solid var(--ui); + margin-bottom: 3rem; +} + +footer { + text-align: center; +} + .hidden { display: none; } diff --git a/grug.scm b/grug.scm @@ -47,19 +47,16 @@ (hr (@ (class "hidden"))) (div (@ (id "content")) ,@body) - (hr (@ (class "hidden"))) + (hr) (footer (p "© 2025 Luke Willis"))))) (site #:metadata `((title . "MonasTech")) #:builders (list (simple-pages - "pages" - #:template site-template) - (copy-directory - "css") - ;; The images are not stored in git. Sorry! - (copy-directory - "img")) + "pages" + #:template site-template) + (copy-directory "css") + (copy-directory "img")) #:publishers (list (rsync-publisher #:user "lukejw" #:host "monastech.xyz" #:destination "/var/www/htdocs/www.monastech.xyz/"