From 76ff74cf63ef34da806bc4722a3650d94f2bd844 Mon Sep 17 00:00:00 2001 From: Dillon Date: Fri, 27 May 2022 22:12:28 +0800 Subject: [PATCH] chore: update theme-documentation-basics docs --- .../theme-documentation-basics/index.en.md | 49 ++++++++++++++++++ .../theme-documentation-basics/index.zh-cn.md | 51 +++++++++++++++++++ 2 files changed, 100 insertions(+) diff --git a/exampleSite/content/posts/theme-documentation-basics/index.en.md b/exampleSite/content/posts/theme-documentation-basics/index.en.md index c30c0d37..b569ee21 100644 --- a/exampleSite/content/posts/theme-documentation-basics/index.en.md +++ b/exampleSite/content/posts/theme-documentation-basics/index.en.md @@ -200,6 +200,55 @@ In addition to [Hugo global configuration](https://gohugo.io/overview/configurat Please open the code block below to view the complete sample configuration :(far fa-hand-point-down fa-fw):: ```toml +baseURL = "http://example.org/" + +# Change the default theme to be use when building the site with Hugo +theme = "LoveIt" + +# website title +title = "My New Hugo Site" + +# language code ["en", "zh-CN", "fr", "pl", ...] +languageCode = "en" +# language name ["English", "简体中文", "Français", "Polski", ...] +languageName = "English" + +# Author config +[author] + name = "xxxx" + email = "" + link = "" + +# Menu config +[menu] + [[menu.main]] + weight = 1 + identifier = "posts" + # you can add extra information before the name (HTML format is supported), such as icons + pre = "" + # you can add extra information after the name (HTML format is supported), such as icons + post = "" + name = "Posts" + url = "/posts/" + # title will be shown when you hover on this menu link + title = "" + [[menu.main]] + weight = 2 + identifier = "tags" + pre = "" + post = "" + name = "Tags" + url = "/tags/" + title = "" + [[menu.main]] + weight = 3 + identifier = "categories" + pre = "" + post = "" + name = "Categories" + url = "/categories/" + title = "" + [params] # site default theme ["auto", "light", "dark"] defaultTheme = "auto" diff --git a/exampleSite/content/posts/theme-documentation-basics/index.zh-cn.md b/exampleSite/content/posts/theme-documentation-basics/index.zh-cn.md index 189bc57f..de5a4e87 100644 --- a/exampleSite/content/posts/theme-documentation-basics/index.zh-cn.md +++ b/exampleSite/content/posts/theme-documentation-basics/index.zh-cn.md @@ -202,6 +202,57 @@ hugo 请打开下面的代码块查看完整的示例配置 :(far fa-hand-point-down fa-fw):: ```toml +baseURL = "http://example.org/" + +# 更改使用 Hugo 构建网站时使用的默认主题 +theme = "LoveIt" + +# 网站标题 +title = "我的全新 Hugo 网站" + +# 网站语言, 仅在这里 CN 大写 ["en", "zh-CN", "fr", "pl", ...] +languageCode = "zh-CN" +# 语言名称 ["English", "简体中文", "Français", "Polski", ...] +languageName = "简体中文" +# 是否包括中日韩文字 +hasCJKLanguage = true + +# 作者配置 +[author] + name = "xxxx" + email = "" + link = "" + +# 菜单配置 +[menu] + [[menu.main]] + weight = 1 + identifier = "posts" + # 你可以在名称 (允许 HTML 格式) 之前添加其他信息, 例如图标 + pre = "" + # 你可以在名称 (允许 HTML 格式) 之后添加其他信息, 例如图标 + post = "" + name = "文章" + url = "/posts/" + # 当你将鼠标悬停在此菜单链接上时, 将显示的标题 + title = "" + [[menu.main]] + weight = 2 + identifier = "tags" + pre = "" + post = "" + name = "标签" + url = "/tags/" + title = "" + [[menu.main]] + weight = 3 + identifier = "categories" + pre = "" + post = "" + name = "分类" + url = "/categories/" + title = "" + [params] # 网站默认主题样式 ["auto", "light", "dark"] defaultTheme = "auto"