diff options
author | Skia | 2020-10-16 17:12:09 +0200 |
---|---|---|
committer | Skia | 2020-10-16 17:12:11 +0200 |
commit | 4e714b98a01a1d42ee950b4d8c6e093350b2a5b3 (patch) | |
tree | c9e7f9fb35275ce015b68e2aa617e3f36810df70 /exampleSite | |
parent | 5b7e4d63d7012f84201adf2e45501208fe95b972 (diff) | |
download | hugo-theme-fuji-4e714b98a01a1d42ee950b4d8c6e093350b2a5b3.tar.gz hugo-theme-fuji-4e714b98a01a1d42ee950b4d8c6e093350b2a5b3.tar.bz2 hugo-theme-fuji-4e714b98a01a1d42ee950b4d8c6e093350b2a5b3.zip |
Footer improvements
Add multiple new options:
- sourceURL: to provide a link to the website source code
- showLicenseInFooter: to display the license in the footer
- copyrightStartYear: to display the copyright with a range of years
Diffstat (limited to 'exampleSite')
-rw-r--r-- | exampleSite/config.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 5b2eafe..602cd2d 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -34,6 +34,9 @@ paginate = 10 author = "DSRKafuU" # You can also set author in post front matter individually subTitle = "A minimal Hugo theme." + # Source URL of the website, will appear in the footer + sourceURL = "https://github.com/itsme/my_blog" + # Use CloudFlare Workers to accelerate the Google Analytics # If you are using this please comment the googleAnalytics above # Check https://github.com/SukkaW/cloudflare-workers-async-google-analytics for more details @@ -48,10 +51,16 @@ paginate = 10 showWordCounter = true showReadTime = false + # License in the footer + showLicenseInFooter = false + # License at the end of each post showLicense = true showToc = true + # Copyright + copyrightStartYear = "2020" + # Open Graph & Twitter Card variables # You can also set description and images in post front matter individually description = "A minimal Hugo theme with nice theme color." |