diff options
author | Paul Duncan <pabs@pablotron.org> | 2021-10-16 09:12:02 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2021-10-16 09:12:02 -0400 |
commit | 40f5dcf94f56ebb8d945dd2758e57124e90f5e80 (patch) | |
tree | 0a5214b7c5aa37d7eb6b6c8cc6feb0c5216f96d2 | |
parent | 7d4e7ef4cbafce6a979535af4ceab1cfebda633d (diff) | |
download | pablotron.org-40f5dcf94f56ebb8d945dd2758e57124e90f5e80.tar.bz2 pablotron.org-40f5dcf94f56ebb8d945dd2758e57124e90f5e80.zip |
config.toml, data.yaml: add comments
-rw-r--r-- | config.toml | 7 | ||||
-rw-r--r-- | data/menu.yaml | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/config.toml b/config.toml index 7168dbb..4d97c77 100644 --- a/config.toml +++ b/config.toml @@ -1,6 +1,7 @@ -baseURL = "https://new.pablotron.org/" +# base hugo config +baseURL = "https://pablotron.org/" languageCode = "en-us" -title = "new.pablotron.org" +title = "pablotron.org" theme = "hugo-pt2021" [params] @@ -9,11 +10,13 @@ theme = "hugo-pt2021" # timezone (used for "bin/new post some-post") tz = "-04:00" +# not sure i need this (covered in data/menu.yaml) [[params.social]] icon = "github" name = "github" url = "https://github.com/pablotron" +# content type permalinks [permalinks] posts = "/:year/:month/:day/:slug" articles = "/articles/:slug" diff --git a/data/menu.yaml b/data/menu.yaml index d1d93cc..475a89d 100644 --- a/data/menu.yaml +++ b/data/menu.yaml @@ -1,4 +1,5 @@ --- +# left-aligned navbar menu entries start: - id: "about" href: "/about/" @@ -16,6 +17,9 @@ start: # href: "/links/" # name: "Links" # help: "Links" + +# right-aligned navbar menu entries +# (these are usually icon-only) end: - id: "github" href: "https://github.com/pablotron" |