aboutsummaryrefslogtreecommitdiff
path: root/publish.el
diff options
context:
space:
mode:
Diffstat (limited to 'publish.el')
-rw-r--r--publish.el28
1 files changed, 14 insertions, 14 deletions
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 <[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"