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

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDillon <dillonzq@outlook.com>2020-03-16 10:36:56 +0300
committerGitHub <noreply@github.com>2020-03-16 10:36:56 +0300
commitee1c5c22bc765660aad504c63c949239c454302e (patch)
tree43bbc3fb2447f680d8c076c885a07f94a6494f15 /exampleSite
parent6e091b6fad270022f20003c7e13d7edf2496a44e (diff)
feat(style): add header title style config (#170)
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/config.toml10
-rw-r--r--exampleSite/config/css/_override.scss4
2 files changed, 8 insertions, 6 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 14e1684..6e6c5f0 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -9,6 +9,10 @@ theme = "LoveIt"
# 主题目录
themesDir = "../.."
+# website title
+# 网站标题
+title = "LoveIt"
+
# whether to use robots.txt
# 是否使用 robots.txt
enableRobotsTXT = true
@@ -24,8 +28,6 @@ enableEmoji = true
weight = 1
# language code
languageCode = "en"
- # website title
- title = "LoveIt"
# language name
languageName = "English"
# whether to include Chinese/Japanese/Korean
@@ -248,8 +250,6 @@ enableEmoji = true
weight = 2
# 网站语言, 仅在这里 CN 大写
languageCode = "zh-CN"
- # 网站标题
- title = "LoveIt"
# 语言名称
languageName = "简体中文"
# 是否包括中日韩文字
@@ -470,8 +470,6 @@ enableEmoji = true
weight = 3
# language code
languageCode = "fr"
- # website title
- title = "LoveIt"
# language name
languageName = "Français"
# whether to include Chinese/Japanese/Korean
diff --git a/exampleSite/config/css/_override.scss b/exampleSite/config/css/_override.scss
index c37b4ec..aee416b 100644
--- a/exampleSite/config/css/_override.scss
+++ b/exampleSite/config/css/_override.scss
@@ -2,3 +2,7 @@
// Override Variables
// 覆盖变量
// ==============================
+
+@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500&display=swap');
+
+$header-title-font-family: 'Baloo 2', $global-font-family;