Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/heyeshuang/hugo-theme-tokiwa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/hugo.toml')
-rw-r--r--exampleSite/hugo.toml73
1 files changed, 73 insertions, 0 deletions
diff --git a/exampleSite/hugo.toml b/exampleSite/hugo.toml
new file mode 100644
index 0000000..fda4cec
--- /dev/null
+++ b/exampleSite/hugo.toml
@@ -0,0 +1,73 @@
+DefaultContentLanguage = "en"
+author = "He Yeshuang"
+baseURL = "https://example.com/"
+copyright = "Copyright © 2008–2019"
+disqusShortname = "YOURSHORTNAME"
+enableInlineShortcodes = true
+footnoteReturnLinkContents = "^"
+googleAnalytics = "UA-FAKE" ## or "G-xxxxxxxx" in Google Analytics v4, in hugo v0.82+
+hasCJKLanguage = true
+languageCode = "cn"
+theme = "hugo-theme-tokiwa"
+title = "Hugo Themes"
+
+[markup]
+[markup.highlight]
+style = "monokailight"
+
+[markup.goldmark.renderer]
+unsafe = true
+
+[params]
+bannerFont = "fonts/exampleFont"
+description = """
+Tokiwa-iro is the theme color of this site.
+"""
+env = "production" # for Google Analytics and DISQUS.
+favicon = "img/favicon-32x32.png"
+fuse = true # for searchbox. "JSON" must added to output contents. See [outputs].
+math = true # for introducing $KaTeX$
+useChineseFonts = true
+postDateFormat = "2006-1-2"
+
+[menu]
+# Shown in the side menu.
+[[menu.main]]
+identifier = "post"
+name = "Posts"
+url = "/post/"
+weight = 1
+[[menu.main]]
+name = "Tags"
+url = "/tags/"
+weight = 2
+
+[[menu.main]]
+name = "Categories"
+url = "/categories/"
+weight = 2
+
+[[menu.main]]
+identifier = "about"
+name = "About"
+url = "/about/"
+weight = 3
+
+[taxonomies]
+category = "categories"
+series = "series"
+tag = "tags"
+[social]
+bilibili = "http://example.com/"
+github = "https://github.com/"
+gitlab = "https://gitlab.com/"
+instagram = "http://example.com/"
+mail = "mailto:anon@example.com"
+twitter = "https://twitter.com/"
+weibo = "http://example.com/"
+youtube = "https://youtube.com/"
+zhihu = "http://example.com/"
+# any icon in layouts/partials/svg can be used by the name without the "-line.svg"
+
+[outputs]
+home = ["HTML", "RSS", "JSON"]