diff options
Diffstat (limited to 'content')
| -rw-r--r-- | content/org-ssg.toml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/content/org-ssg.toml b/content/org-ssg.toml index d88e309..b7feac6 100644 --- a/content/org-ssg.toml +++ b/content/org-ssg.toml @@ -23,10 +23,14 @@ base_url = "" # Explicit, because the pages that belong in the nav are not all top-level: /blog/ and # /garden/ are generated below, and salary/ is a section index one level down. index.org # is deliberately absent — the layout already links home from the site title, and listing -# it here would print "cleberg.net" twice side by side. Source pages come first in the -# order listed, then the collections that set `nav = true`. +# it here would print "cleberg.net" twice side by side. +# +# Generated pages are named by their output path, authored ones by their source. Listing +# them together is what puts Salary last: a collection with `nav = true` that is not +# listed here gets appended after everything that is. /tags/ is deliberately not listed, +# so it lands at the end. mode = "explicit" -pages = ["salary/index.org"] +pages = ["blog/index.html", "garden/index.html", "salary/index.org"] [templates] dir = "templates" |
