From ce03860635f7bc1d365cedc0416f3ae376e86204 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 11 Mar 2026 00:06:39 -0500 Subject: Remove about page and services route; merge services into apps --- publish.el | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'publish.el') diff --git a/publish.el b/publish.el index 3849e5b..fb5c39b 100644 --- a/publish.el +++ b/publish.el @@ -23,7 +23,7 @@ :theme nil :template-vars '(("site_name" . "seijaku") ("site_owner" . "Christian Cleberg ") - ("site_description" . "Stillness in the middle of it all."))) + ("site_description" . "Stillness amidst the chaos."))) ;; Define routes for rendering content @@ -85,13 +85,21 @@ :output ".build/salary/{{ slug }}.html" :url "/salary/{{ slug }}.html") -;; Services page route +;; Guides page route (weblorg-route - :name "services" - :input-pattern "content/services/*.org" + :name "guides" + :input-pattern "content/guides/*.org" :template "page.html" - :output ".build/services/{{ slug }}.html" - :url "/services/{{ slug }}.html") + :output ".build/guides/{{ slug }}.html" + :url "/guides/{{ slug }}.html") + +;; Apps page route +(weblorg-route + :name "apps" + :input-pattern "content/apps/*.org" + :template "page.html" + :output ".build/apps/{{ slug }}.html" + :url "/apps/{{ slug }}.html") ;; Now page route (weblorg-route @@ -101,14 +109,6 @@ :output ".build/now/{{ slug }}.html" :url "/now/{{ slug }}.html") -;; About page route -(weblorg-route - :name "about" - :input-pattern "content/about/*.org" - :template "page.html" - :output ".build/about/{{ slug }}.html" - :url "/about/{{ slug }}.html") - ;; Uses page route (weblorg-route :name "uses" -- cgit v1.2.3