diff options
-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" |