diff options
| author | Christian Cleberg <[email protected]> | 2026-03-11 00:06:39 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-03-11 00:06:39 -0500 |
| commit | ce03860635f7bc1d365cedc0416f3ae376e86204 (patch) | |
| tree | a98bc6f08e9c3fa439aa9d38a431c58e84ba8a79 /publish.el | |
| parent | b0460f44ea5a29a33c4ac93ecd101688021447d6 (diff) | |
| download | cleberg.net-ce03860635f7bc1d365cedc0416f3ae376e86204.tar.gz cleberg.net-ce03860635f7bc1d365cedc0416f3ae376e86204.tar.bz2 cleberg.net-ce03860635f7bc1d365cedc0416f3ae376e86204.zip | |
Remove about page and services route; merge services into apps
Diffstat (limited to 'publish.el')
| -rw-r--r-- | publish.el | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -23,7 +23,7 @@ :theme nil :template-vars '(("site_name" . "seijaku") ("site_owner" . "Christian Cleberg <[email protected]>") - ("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" |
