diff options
author | Dante Catalfamo | 2020-06-18 14:50:45 -0400 |
---|---|---|
committer | Dante Catalfamo | 2020-06-18 14:50:45 -0400 |
commit | 051adec5ba857bf709ce7eac7543194390b53739 (patch) | |
tree | 4ce21015b86fe8e98eef4d3ece4083d02c43acf5 /config.toml | |
parent | df6a258ca4b5c6a6fad16ef445d66721cc31b690 (diff) | |
download | blog-051adec5ba857bf709ce7eac7543194390b53739.tar.gz blog-051adec5ba857bf709ce7eac7543194390b53739.tar.bz2 blog-051adec5ba857bf709ce7eac7543194390b53739.zip |
Fix RSS and add site search
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config.toml b/config.toml index 925ca7d..5295581 100644 --- a/config.toml +++ b/config.toml @@ -6,6 +6,9 @@ theme = "fuji" languageCode = "en-us" enableRobotsTXT = true +[outputs] + home = ["html", "rss", "json"] + [params] author = "Dante Catalfamo" subTitle = "Sharing notes with the internet" @@ -39,6 +42,14 @@ enableRobotsTXT = true name = "About" url = "/about/" weight = 3 + [[menu.nav]] + name = "Search" + url = "/search/" + weight = 4 + [[menu.nav]] + name = "RSS" + url = "/index.xml" + weight = 5 [[menu.link]] name = "GitHub" |