diff options
| author | Franck Cuny <franck@fcuny.net> | 2021-04-22 12:44:27 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2021-04-22 12:44:27 -0700 |
| commit | fedc092d3229ac87b11f8f22b7d7e170e9bc2e88 (patch) | |
| tree | 2aef7e597b280e864d64ae0dff01c796b26683d8 /config.toml | |
| parent | toml: re-configure markup (diff) | |
| download | fcuny.net-fedc092d3229ac87b11f8f22b7d7e170e9bc2e88.tar.gz | |
layout: add a navbar
I want to differentiate blog's entries from more general notes. For
this, we create two menu entries, and add a navbar at the top.
The nav bar let us select between the two kind of articles: blogs or
notes. For now we have a single blog entry, and no notes.
The page to list entries is simplified: we use the same layout for all
lists (tags, notes, blogs).
The CSS is updated to support the new nav bar.
Diffstat (limited to 'config.toml')
| -rw-r--r-- | config.toml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/config.toml b/config.toml index 31f75af..6100ba5 100644 --- a/config.toml +++ b/config.toml @@ -1,6 +1,6 @@ baseURL = "http://fcuny.net/" languageCode = "en-us" -title = "Franck Cuny's Website" +title = "Franck's rambling" publishDir = "docs" enableGitInfo = true @@ -11,9 +11,23 @@ enableGitInfo = true tag = "tags" [permalinks] - articles = "/:section/:slug/" + blog = "/blog/:slug/" + notes = "/notes/:slug/" tags = "/tags/:slug/" +[menu] + [[menu.main]] + identifier = "articles" + name = "blog" + title = "articles" + url = "/blog/" + + [[menu.main]] + identifier = "notes" + name = "notes" + title = "notes" + url = "/notes/" + [markup] [markup.tableOfContents] startLevel = 1 |
