diff options
author | hyang <hyang@hyang.xyz> | 2023-09-14 21:44:23 -0700 |
---|---|---|
committer | hyang <hyang@hyang.xyz> | 2023-09-14 21:44:23 -0700 |
commit | d2eee3b79256166802729f576227dcb01d5d6556 (patch) | |
tree | 9be7d875d7507f1d049c300006e91256d7cd484b /hugo.toml | |
parent | 3c460d23e168d93790cd548fa90e04b4d91c6fb8 (diff) |
fix
Diffstat (limited to 'hugo.toml')
-rw-r--r-- | hugo.toml | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -2,14 +2,29 @@ baseURL = 'https://hyang.xyz' languageCode = 'en-us' title = "hyang's homepage" theme = 'papermodx' +enableRobotsTXT = true paginate = 5 [params] description = "Cool blogpostings" author = "hyang" - mainSections = ["post"] + email = "hyang@hyang.xyz" + mainSections = ["posts"] TocOpen = true TocSide = "left" + ShowReadingTime = true + ShowWordCount = true + ShowCodeCopyButtons = true + ShowPostNavLinks = true + + [[menu.main]] + name = "Posts" + url = "/posts" + weight = 1 + [[menu.main]] + name = "Search" + url = "/search" + weight = 2 [[params.socialIcons]] name = "email" |