diff options
author | DSRKafuU | 2020-06-19 00:40:29 +0800 |
---|---|---|
committer | GitHub | 2020-06-19 00:40:29 +0800 |
commit | ec4b32aa7ab6b71d0b9f756bc8d1c1b1e3cf8353 (patch) | |
tree | 65938a770dbb2c02f7028204d3cf77ca52990b97 /exampleSite/config.toml | |
parent | 1a9b75fa6216334d0a9a1c379dba212888ce6f76 (diff) | |
parent | edbbfabae66d75217a95e3e0a054548502ebf2d9 (diff) | |
download | hugo-theme-fuji-ec4b32aa7ab6b71d0b9f756bc8d1c1b1e3cf8353.tar.gz hugo-theme-fuji-ec4b32aa7ab6b71d0b9f756bc8d1c1b1e3cf8353.tar.bz2 hugo-theme-fuji-ec4b32aa7ab6b71d0b9f756bc8d1c1b1e3cf8353.zip |
Merge pull request #34 from amzrk2/dev
Pre-release v2.1.0
Diffstat (limited to 'exampleSite/config.toml')
-rw-r--r-- | exampleSite/config.toml | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 72e22b7..3d03c3b 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -11,11 +11,14 @@ disableKinds = ["taxonomyTerm"] languageCode = "en" # For RSS, view https://www.rssboard.org/rss-language-codes defaultContentLanguage = "en" # For HTML page, now support: en, zh-hans, zh-hant, ja, nl -summaryLength = 100 # Custom cummary length, add <!--more--> in post file to custom split point +summaryLength = 100 # Custom summary length, add <!--more--> in post file to custom split point paginate = 10 # googleAnalytics = "UA-000000000-0" # Set your Google Analytics UA here +[outputs] + home = ["html", "rss", "json"] + [permalinks] post = "/:section/:filename/" # Custom post links, e.g. "/:year/:month/:title/" @@ -29,9 +32,14 @@ paginate = 10 # googleAnalyticsTid = "UA-000000000-0" # googleAnalyticsRoute = "https://*.*.workers.dev/" + # Google AdSense + # The AdSense code will be inserted between the head tags of your site. + # googleAdsense = "0000000000000000" + # Word counter and read time indicator in post metadata showWordCounter = true showReadTime = false + # License at the end of each post showLicense = true showToc = true @@ -74,6 +82,9 @@ paginate = 10 # Use Hugo Pipes in Hugo Extended Version to compile SCSS # useHugoPipes = true + # Let images display in full brightness under dark mode + # disableDarkImage = true + [markup] [markup.goldmark] [markup.goldmark.renderer] @@ -101,6 +112,14 @@ paginate = 10 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" |