diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 999dfcfd..a0863432 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -39,6 +39,7 @@ dateFormatToUse = "2006-01-02"
# Goldmark is from Hugo 0.60 the default library used for Markdown
[markup.goldmark]
[markup.goldmark.renderer]
+ # whether to use HTML tags directly in the document
unsafe = true
# Table Of Contents settings
[markup.tableOfContents]
@@ -48,6 +49,7 @@ dateFormatToUse = "2006-01-02"
# Author Info
[author]
name = "xxxx"
+ link = ""
# Sitemap Info
[sitemap]
@@ -95,7 +97,7 @@ dateFormatToUse = "2006-01-02"
# LoveIt theme version
version = "0.1.X"
# site description
- description = "LoveIt Theme Demo"
+ description = "About LoveIt Theme"
# site keywords
keywords = ["Theme", "Hugo"]
@@ -259,7 +261,7 @@ dateFormatToUse = "2006-01-02"
# Disqus Comment Config (https://disqus.com/)
[params.disqus]
# Disqus shortname to use Disqus in posts
- shortname = ""
+ shortname = "dillonzq"
# Gittalk Comment Config (https://github.com/gitalk/gitalk)
[params.gitalk]
@@ -296,18 +298,18 @@ dateFormatToUse = "2006-01-02"
[privacy.youtube]
privacyEnhanced = true
-# Options to make hugo output .md files.
+# Options to make output .md files
[mediaTypes]
[mediaTypes."text/plain"]
suffixes = ["md"]
-# Options to make hugo output .md files.
+# Options to make output .md files
[outputFormats.MarkDown]
mediaType = "text/plain"
isPlainText = true
isHTML = false
-# Options to make hugo output files.
+# Options to make hugo output files
[outputs]
home = ["HTML", "RSS"]
page = ["HTML", "MarkDown"]
diff --git a/exampleSite/zh/config.toml b/exampleSite/zh/config.toml
index b4312425..d6283c4b 100644
--- a/exampleSite/zh/config.toml
+++ b/exampleSite/zh/config.toml
@@ -1,38 +1,68 @@
baseURL = "https://example.com/"
-languageCode = "zh" # 网站语言标识
-defaultContentLanguage = "zh" # [en, zh, ...] 设定主题的国际化
-title = "LoveIt 主题" # 网站标题
-theme = "LoveIt" # 主题
-enableGitInfo = false # 是否使用 git 信息来生成文章的上次修改时间
-hasCJKLanguage = true # 是否包括中日韩文字
-paginate = 12 # 默认每页列表显示的文章数目
-enableEmoji = true # 是否使用 emoji 代码
-enableRobotsTXT = true # 是否使用 robots.txt
-googleAnalytics = "" # [UA-XXXXXXXX-X] 谷歌分析代号
-disqusShortname = "dillonzq" # Disqus 的用户名,用来在文章中启用 Disqus 评论系统
+# 网站语言
+languageCode = "zh"
+# [en, zh, ...] 设定主题的国际化
+defaultContentLanguage = "zh"
+# 网站标题
+title = "LoveIt 主题"
+# 主题
+theme = "LoveIt"
+# 是否使用 git 信息来生成文章的上次修改时间
+enableGitInfo = false
+# 是否包括中日韩文字
+hasCJKLanguage = true
+# 默认每页列表显示的文章数目
+paginate = 12
+# 是否使用 emoji 代码
+enableEmoji = true
+# 是否使用 robots.txt
+enableRobotsTXT = true
+# [UA-XXXXXXXX-X] 谷歌分析代号
+googleAnalytics = ""
+# 版权描述,仅仅用于 SEO
copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License."
- # 版权描述,仅仅用于 SEO
+# 日期格式
+dateFormatToUse = "2006-01-02"
- #### 代码高亮设置 (https://gohugo.io/content-management/syntax-highlighting)
-pygmentsOptions = "linenos=table"
-pygmentsCodefences = true
-pygmentsUseClasses = true
-pygmentsCodefencesGuessSyntax = true
+# Hugo 解析文档的配置
+[markup]
+ # 代码高亮设置 (https://gohugo.io/content-management/syntax-highlighting)
+ [markup.highlight]
+ codeFences = true
+ guessSyntax = true
+ lineNoStart = 1
+ lineNos = true
+ lineNumbersInTable = true
+ noClasses = false
+ style = "monokai"
+ tabWidth = 4
+ # Goldmark 是 Hugo 0.60 以来的默认 Markdown 解析库
+ [markup.goldmark]
+ [markup.goldmark.renderer]
+ # 是否在文档中直接使用 HTML 标签
+ unsafe = true
+ # 目录设置
+ [markup.tableOfContents]
+ startLevel = 2
+ endLevel = 6
-staticDir = ["../static", "../../assets/others"] # 静态文件目录
+# 作者信息
+[author]
+ name = "xxxx"
+ link = ""
-[author] #### 作者信息
- name = "XXXX"
-
-[sitemap] #### Sitemap 信息
+# 网站地图信息
+[sitemap]
changefreq = "weekly"
filename = "sitemap.xml"
priority = 0.5
-[Permalinks] #### Permalinks 信息 (https://gohugo.io/content-management/urls/#permalinks)
+# Permalinks 信息 (https://gohugo.io/content-management/urls/#permalinks)
+[Permalinks]
posts = ":year/:month/:filename"
-[menu] #### 菜单信息
+# 菜单信息
+[menu]
[[menu.main]]
identifier = "posts"
name = "文章"
@@ -59,41 +89,56 @@ staticDir = ["../static", "../../assets/others"] # 静态文件目录
[[menu.main]]
identifier = "en"
- name = ''
+ name = ''
url = "https://hugo-loveit-en.netlify.com"
weight = 5
[params]
- version = "5.x" # LoveIt 主题版本
- description = "LoveIt 主题演示" # 网站介绍
- keywords = ["XXXX", "Theme", "Hugo"] # 网站关键词
+ # LoveIt 主题版本
+ version = "0.1.X"
+ # 网站描述
+ description = "关于 LoveIt 主题"
+ # 网站关键词
+ keywords = ["Theme", "Hugo"]
- #### 主页配置
- home_mode = "post" # [post, other] 主页模式
- home_paginate = 6 # post 主页模式下,主页每页显示的文章数目,默认等于 paginate 值
- avatar = "images/avatar.png" # 主页显示的头像路径
- subtitle = "一个简洁、优雅且高效的 Hugo 主题" # 主页显示的网站副标题
+ # 主页信息设置
+ ## [post, other] 主页模式
+ home_mode = "post"
+ ## 主页在 post 模式下每页 post 显示数量
+ home_paginate = 6
+ ## 主页显示头像的 URL
+ avatar = "images/avatar.png"
+ ## 主页显示的网站副标题
+ subtitle = "一个简洁、优雅且高效的 Hugo 主题"
- socialShare = true # 在文章页面是否使用分享功能
+ # 在文章页面是否使用分享功能
+ socialShare = true
- #### 页面底部版权信息设置
- since = 2018 # 网站创立年份
- icp = '' # ICP 备案信息,仅在中国使用 (允许使用 HTML 格式)
+ # 页面底部版权信息设置
+ ## 网站创立年份
+ since = 2018
+ ## ICP 备案信息,仅在中国使用 (允许使用 HTML 格式)
+ icp = ""
+ ## 许可协议信息 (允许使用 HTML 格式)
license= 'CC BY-NC 4.0'
- # 许可协议信息 (允许使用 HTML 格式)
- gitRepo = "" # 用于生成文章上次修改时间的公共 git 仓库路径,仅在 enableGitInfo 设为 true 时有效
- linkToMarkdown = true # 是否在文章页面显示原始 Markdown 文档链接
+ # 用于生成文章上次修改时间的公共 git 仓库路径,仅在 enableGitInfo 设为 true 时有效
+ gitRepo = ""
- #### 网站验证代码,用于 Google/Bing/Yandex/Pinterest/Baidu
+ # 是否在文章页面显示原始 Markdown 文档链接
+ linkToMarkdown = true
+
+ # 网站验证代码,用于 Google/Bing/Yandex/Pinterest/Baidu
google_verification = ""
bing_verification = ""
yandex_verification = ""
pinterest_verification = ""
baidu_verification = ""
- [params.cdn] #### CSS 和 JS 文件的 CDN 设置
- fontawesome_free_css = '' # 例如 ''
+ # CSS 和 JS 文件的 CDN 设置
+ [params.cdn]
+ ## 例如 ''
+ fontawesome_free_css = ''
animate_css = ''
gitalk_css = ''
gitalk_js = ''
@@ -113,15 +158,17 @@ staticDir = ["../static", "../../assets/others"] # 静态文件目录
aplayer_js = ''
meting_js = ''
- [params.gravatar] # Gravatar 信息,用于优先在主页显示的头像
+ # Gravatar 信息,用于优先在主页显示的头像
+ [params.gravatar]
email = ""
- [params.social] # 主页的社交信息设置
+ # 主页的社交信息设置
+ [params.social]
GitHub = "xxxx"
Linkedin = "xxxx"
Twitter = "xxxx"
#Instagram = "xxxx"
- #Email = "xxxx"
+ Email = "xxxx@outlook.com"
Facebook = "xxxx"
Telegram = "xxxx"
#Medium = "xxxx"
@@ -135,6 +182,7 @@ staticDir = ["../static", "../../assets/others"] # 静态文件目录
#Pinterest = "xxxx"
#Reddit = "xxxx"
#Codepen = "xxxx"
+ #FreeCodeCamp = "xxxx"
#Bitbucket = "xxxx"
#Stackoverflow = "xxxx"
#Weibo = "xxxx"
@@ -176,7 +224,8 @@ staticDir = ["../static", "../../assets/others"] # 静态文件目录
#Thingiverse = "xxxx"
#Devto = "xxxx"
- [params.share] # 文章页面的分享信息设置
+ # 文章页面的分享信息设置
+ [params.share]
enable = true
Twitter = true
Facebook = true
@@ -189,57 +238,79 @@ staticDir = ["../static", "../../assets/others"] # 静态文件目录
#VKontakte = true
#Weibo = true
- [params.publisher] # 出版者信息,仅用于 SEO
- name = "XXXX"
+ # 出版者信息,仅用于 SEO
+ [params.publisher]
+ name = "xxxx"
[params.publisher.logo]
url = "logo.png"
width = 127
height = 40
- [params.logo] # 网站图标信息,仅用于 SEO
+ # 网站图标信息,仅用于 SEO
+ [params.logo]
url = "logo.png"
width = 127
height = 40
- [params.image] # 网站图片信息,仅用于 SEO
+ # 网站图标信息,仅用于 SEO
+ [params.image]
url = "cover.png"
width = 800
height = 600
- [params.gitalk] # Gittalk 评论系统设置 (https://github.com/gitalk/gitalk)
+ # Disqus 评论系统设置 (https://disqus.com/)
+ [params.disqus]
+ # Disqus 的用户名,用来在文章中启用 Disqus 评论系统
+ shortname = "dillonzq"
+
+ # Gittalk 评论系统设置 (https://github.com/gitalk/gitalk)
+ [params.gitalk]
owner = ""
repo = ""
clientId = ""
clientSecret = ""
- [params.valine] # Valine 评论系统设置 (https://github.com/xCss/Valine)
+ # Valine 评论系统设置 (https://github.com/xCss/Valine)
+ [params.valine]
enable = false
appId = ""
appKey = ""
notify = false
verify = true
avatar = "mp"
- placeholder = "Your comment ..."
+ placeholder = "你的评论 ..."
visitor = true
recordIP = true
-[privacy] #### 隐私信息设置 (https://gohugo.io/about/hugo-and-gdpr/)
+ # Facebook 评论系统设置 (https://developers.facebook.com/docs/plugins/comments)
+ [params.facebook]
+ enable = false
+ width = "100%"
+ numPosts = 10
+ appId = ""
+ languageCode = "en_US"
+
+# 隐私信息设置 (https://gohugo.io/about/hugo-and-gdpr/)
+[privacy]
[privacy.googleAnalytics]
anonymizeIP = true
[privacy.youtube]
privacyEnhanced = true
-[mediaTypes] #### 用于输出 Markdown 格式文档的设置
+# 用于输出 Markdown 格式文档的设置
+[mediaTypes]
[mediaTypes."text/plain"]
suffixes = ["md"]
-[outputFormats.MarkDown] #### 用于输出 Markdown 格式文档的设置
+# 用于输出 Markdown 格式文档的设置
+[outputFormats.MarkDown]
mediaType = "text/plain"
isPlainText = true
isHTML = false
-[outputs] #### 用于输出 Markdown 格式文档的设置
+# 用于 Hugo 输出文档的设置
+[outputs]
home = ["HTML", "RSS"]
page = ["HTML", "MarkDown"]
section = ["HTML", "RSS"]
diff --git a/exampleSite/zh/content/posts/Basic-Markdown-Preview.md b/exampleSite/zh/content/posts/Basic-Markdown-Preview.md
index 8231c849..cd614bba 100644
--- a/exampleSite/zh/content/posts/Basic-Markdown-Preview.md
+++ b/exampleSite/zh/content/posts/Basic-Markdown-Preview.md
@@ -1,4 +1,6 @@
---
+author: ""
+author_link: ""
title: "Markdown 基本语法预览"
date: 2019-08-25T16:22:42+08:00
lastmod: 2019-08-25T16:22:42+08:00
@@ -6,13 +8,18 @@ draft: false
description: "这是一篇用于预览 Markdown 基本语法的文章。"
show_in_homepage: true
show_description: false
-license: ''
+license: ""
-tags: ['Hugo', '主题']
-categories: ['预览']
+tags: [
+ "Hugo",
+ "主题",
+]
+categories: [
+ "预览",
+]
-featu红色_image: ''
-featu红色_image_preview: ''
+featured_image: ""
+featured_image_preview: ""
comment: true
toc: true
@@ -22,7 +29,7 @@ math: true
这是一篇用于预览 :(fab fa-markdown): Markdown 基本语法的文章。
-文章内容基于 [GitHub Flavo红色 Markdown Spec](https://github.github.com/gfm)。
+文章内容基于 [GitHub Flavored Markdown Spec](https://github.github.com/gfm)。
不包含复杂的规则说明,仅仅展示 GFM 所约定的 Markdown 基本语法。
@@ -34,7 +41,7 @@ math: true
它由 John Gruber (在 Aaron Swartz 的帮助下)开发,于 2004 年以语法描述和用于将 Markdown 转换为 HTML 的 Perl 脚本(Markdown.pl)的形式发布。
在接下来的十年中,许多实现被开发出来。一些用脚注、表和其他文档元素的约定扩展了原始 Markdown 语法。
-有些允许 Markdown 文档以 HTML 以外的格式呈现。 像 红色dit,StackOverflow 和 GitHub 这样的网站有上百万的用户在使用 Markdown。
+有些允许 Markdown 文档以 HTML 以外的格式呈现。 像 reddit,StackOverflow 和 GitHub 这样的网站有上百万的用户在使用 Markdown。
Markdown 开始被应用于网络以外的领域,包括作者书籍、文章、幻灯片、信件和课堂笔记。
## 2 块和内联元素
@@ -481,10 +488,10 @@ is maintained by the W3C.
The HTML specification
is maintained by the W3C.
-## Unorde红色 List
+## Unordered List
```
-Unorde红色 List
+Unordered List
- item 1
* item A
@@ -498,7 +505,7 @@ Unorde红色 List
- item 3
```
-Unorde红色 List
+Unordered List
- item 1
* item A
@@ -512,10 +519,10 @@ Unorde红色 List
- item 3
-## Orde红色 List
+## Ordered List
```
-Orde红色 List
+Ordered List
1. item 1
1. item A
@@ -529,7 +536,7 @@ Orde红色 List
3. item 3
```
-Orde红色 List
+Ordered List
1. item 1
1. item A
@@ -681,14 +688,14 @@ function doIt() {
```
| _颜色_ | 水果 | 蔬菜 |
| ------------- |:---------------:| -----------------:|
-| 红色 | *苹果* | [辣椒](#Tables) |
+| red | *苹果* | [辣椒](#Tables) |
| ~~橙色~~ | 橘子 | **胡萝卜** |
| 绿色 | ~~***梨子***~~ | 菠菜 |
```
| _颜色_ | 水果 | 蔬菜 |
| ------------- |:---------------:| ------------:|
-| 红色 | *苹果* | [辣椒](#Tables) |
+| red | *苹果* | [辣椒](#Tables) |
| ~~橙色~~ | 橘子 | **胡萝卜** |
| 绿色 | ~~***梨子***~~ | 菠菜 |
@@ -822,7 +829,7 @@ This is a test for emoji :smile:. The emojis are images linked to github assets
### People
-:+1::-1::alien::angel::anger::angry::anguished::astonished::baby::blue_heart::blush::boom::bow::bowtie::boy::bride_with_veil::broken_heart::bust_in_silhouette::busts_in_silhouette::clap::cold_sweat::collision::confounded::confused::construction_worker::cop::couple::couple_with_heart::couplekiss::cry::crying_cat_face::cupid::dancer::dancers::dash::disappointed::disappointed_relieved::dizzy::dizzy_face::droplet::ear::exclamation::expressionless::eyes::facepunch::family::fearful::feelsgood::feet::finnadie::fire::fist::flushed::frowning::fu::girl::goberserk::godmode::绿色_heart::grey_exclamation::grey_question::grimacing::grin::grinning::guardsman::haircut::hand::hankey::hear_no_evil::heart::heart_eyes::heart_eyes_cat::heartbeat::heartpulse::hurtrealbad::hushed::imp::information_desk_person::innocent::japanese_goblin::japanese_ogre::joy::joy_cat::kiss::kissing::kissing_cat::kissing_closed_eyes::kissing_heart::kissing_smiling_eyes::laughing::lips::love_letter::man::man_with_gua_pi_mao::man_with_turban::mask::massage::metal::muscle::musical_note::nail_care::neckbeard::neutral_face::no_good::no_mouth::nose::notes::ok_hand::ok_woman::older_man::older_woman::open_hands::open_mouth::pensive::persevere::person_frowning::person_with_blond_hair::person_with_pouting_face::point_down::point_left::point_right::point_up::point_up_2::poop::pouting_cat::pray::princess::punch::purple_heart::question::rage::rage1::rage2::rage3::rage4::raised_hand::raised_hands::raising_hand::relaxed::relieved::revolving_hearts::runner::running::satisfied::scream::scream_cat::see_no_evil::shit::skull::sleeping::sleepy::smile::smile_cat::smiley::smiley_cat::smiling_imp::smirk::smirk_cat::sob::sparkles::sparkling_heart::speak_no_evil::speech_balloon::star::star2::stuck_out_tongue::stuck_out_tongue_closed_eyes::stuck_out_tongue_winking_eye::sunglasses::suspect::sweat::sweat_drops::sweat_smile::thought_balloon::thumbsdown::thumbsup::ti红色_face::tongue::triumph::trollface::two_hearts::two_men_holding_hands::two_women_holding_hands::unamused::v::walking::wave::weary::wink::woman::worried::yellow_heart::yum::zzz:
+:+1::-1::alien::angel::anger::angry::anguished::astonished::baby::blue_heart::blush::boom::bow::bowtie::boy::bride_with_veil::broken_heart::bust_in_silhouette::busts_in_silhouette::clap::cold_sweat::collision::confounded::confused::construction_worker::cop::couple::couple_with_heart::couplekiss::cry::crying_cat_face::cupid::dancer::dancers::dash::disappointed::disappointed_relieved::dizzy::dizzy_face::droplet::ear::exclamation::expressionless::eyes::facepunch::family::fearful::feelsgood::feet::finnadie::fire::fist::flushed::frowning::fu::girl::goberserk::godmode::绿色_heart::grey_exclamation::grey_question::grimacing::grin::grinning::guardsman::haircut::hand::hankey::hear_no_evil::heart::heart_eyes::heart_eyes_cat::heartbeat::heartpulse::hurtrealbad::hushed::imp::information_desk_person::innocent::japanese_goblin::japanese_ogre::joy::joy_cat::kiss::kissing::kissing_cat::kissing_closed_eyes::kissing_heart::kissing_smiling_eyes::laughing::lips::love_letter::man::man_with_gua_pi_mao::man_with_turban::mask::massage::metal::muscle::musical_note::nail_care::neckbeard::neutral_face::no_good::no_mouth::nose::notes::ok_hand::ok_woman::older_man::older_woman::open_hands::open_mouth::pensive::persevere::person_frowning::person_with_blond_hair::person_with_pouting_face::point_down::point_left::point_right::point_up::point_up_2::poop::pouting_cat::pray::princess::punch::purple_heart::question::rage::rage1::rage2::rage3::rage4::raised_hand::raised_hands::raising_hand::relaxed::relieved::revolving_hearts::runner::running::satisfied::scream::scream_cat::see_no_evil::shit::skull::sleeping::sleepy::smile::smile_cat::smiley::smiley_cat::smiling_imp::smirk::smirk_cat::sob::sparkles::sparkling_heart::speak_no_evil::speech_balloon::star::star2::stuck_out_tongue::stuck_out_tongue_closed_eyes::stuck_out_tongue_winking_eye::sunglasses::suspect::sweat::sweat_drops::sweat_smile::thought_balloon::thumbsdown::thumbsup::tired_face::tongue::triumph::trollface::two_hearts::two_men_holding_hands::two_women_holding_hands::unamused::v::walking::wave::weary::wink::woman::worried::yellow_heart::yum::zzz:
### Nature
@@ -830,15 +837,15 @@ This is a test for emoji :smile:. The emojis are images linked to github assets
### Objects
-:8ball::alarm_clock::苹果::art::athletic_shoe::baby_bottle::balloon::bamboo::banana::bar_chart::baseball::basketball::bath::bathtub::battery::beer::beers::bell::bento::bicyclist::bikini::birthday::black_joker::black_nib::blue_book::bomb::book::bookmark::bookmark_tabs::books::boot::bowling::bread::briefcase::bulb::cake::calendar::calling::camera::candy::card_index::cd::chart_with_downwards_trend::chart_with_upwards_trend::cherries::chocolate_bar::christmas_tree::clapper::clipboard::closed_book::closed_lock_with_key::closed_umbrella::clubs::cocktail::coffee::computer::confetti_ball::cookie::corn::c红色it_card::crown::crystal_ball::curry::custard::dango::dart::date::diamonds::dollar::dolls::door::doughnut::dress::dvd::e-mail::egg::eggplant::electric_plug::email::envelope::envelope_with_arrow::euro::eyeglasses::fax::file_folder::fireworks::fish_cake::fishing_pole_and_fish::flags::flashlight::flipper::floppy_disk::flower_playing_cards::football::footprints::fork_and_knife::fried_shrimp::fries::game_die::gem::ghost::gift::gift_heart::golf::grapes::绿色_苹果::绿色_book::guitar::gun::hamburger::hammer::handbag::headphones::hearts::high_brightness::high_heel::hocho::honey_pot::horse_racing::hourglass::hourglass_flowing_sand::ice_cream::icecream::inbox_tray::incoming_envelope::iphone::jack_o_lantern::jeans::key::kimono::lantern::ledger::lemon::lipstick::lock::lock_with_ink_pen::lollipop::loop::loud_sound::loudspeaker::low_brightness::mag::mag_right::mahjong::mailbox::mailbox_closed::mailbox_with_mail::mailbox_with_no_mail::mans_shoe::meat_on_bone::mega::melon::memo::microphone::microscope::minidisc::money_with_wings::moneybag::mortar_board::mountain_bicyclist::movie_camera::musical_keyboard::musical_score::mute::name_badge::necktie::newspaper::no_bell::notebook::notebook_with_decorative_cover::nut_and_bolt::oden::open_book::open_file_folder::橙色_book::outbox_tray::package::page_facing_up::page_with_curl::pager::paperclip::peach::pear::pencil::pencil2::phone::pill::pine苹果::pizza::postal_horn::postbox::pouch::poultry_leg::pound::purse::pushpin::radio::ramen::ribbon::rice::rice_ball::rice_cracker::rice_scene::ring::rugby_football::running_shirt_with_sash::sake::sandal::santa::satellite::saxophone::school_satchel::scissors::scroll::seat::shaved_ice::shirt::shoe::shower::ski::smoking::snowboarder::soccer::sound::space_invader::spades::spaghetti::sparkle::sparkler::speaker::stew::straight_ruler::strawberry::surfer::sushi::sweet_potato::swimmer::syringe::tada::tanabata_tree::tangerine::tea::telephone::telephone_receiver::telescope::tennis::toilet::tomato::tophat::triangular_ruler::trophy::tropical_drink::trumpet::tshirt::tv::unlock::vhs::video_camera::video_game::violin::watch::watermelon::wind_chime::wine_glass::womans_clothes::womans_hat::wrench::yen:
+:8ball::alarm_clock::苹果::art::athletic_shoe::baby_bottle::balloon::bamboo::banana::bar_chart::baseball::basketball::bath::bathtub::battery::beer::beers::bell::bento::bicyclist::bikini::birthday::black_joker::black_nib::blue_book::bomb::book::bookmark::bookmark_tabs::books::boot::bowling::bread::briefcase::bulb::cake::calendar::calling::camera::candy::card_index::cd::chart_with_downwards_trend::chart_with_upwards_trend::cherries::chocolate_bar::christmas_tree::clapper::clipboard::closed_book::closed_lock_with_key::closed_umbrella::clubs::cocktail::coffee::computer::confetti_ball::cookie::corn::credit_card::crown::crystal_ball::curry::custard::dango::dart::date::diamonds::dollar::dolls::door::doughnut::dress::dvd::e-mail::egg::eggplant::electric_plug::email::envelope::envelope_with_arrow::euro::eyeglasses::fax::file_folder::fireworks::fish_cake::fishing_pole_and_fish::flags::flashlight::flipper::floppy_disk::flower_playing_cards::football::footprints::fork_and_knife::fried_shrimp::fries::game_die::gem::ghost::gift::gift_heart::golf::grapes::绿色_苹果::绿色_book::guitar::gun::hamburger::hammer::handbag::headphones::hearts::high_brightness::high_heel::hocho::honey_pot::horse_racing::hourglass::hourglass_flowing_sand::ice_cream::icecream::inbox_tray::incoming_envelope::iphone::jack_o_lantern::jeans::key::kimono::lantern::ledger::lemon::lipstick::lock::lock_with_ink_pen::lollipop::loop::loud_sound::loudspeaker::low_brightness::mag::mag_right::mahjong::mailbox::mailbox_closed::mailbox_with_mail::mailbox_with_no_mail::mans_shoe::meat_on_bone::mega::melon::memo::microphone::microscope::minidisc::money_with_wings::moneybag::mortar_board::mountain_bicyclist::movie_camera::musical_keyboard::musical_score::mute::name_badge::necktie::newspaper::no_bell::notebook::notebook_with_decorative_cover::nut_and_bolt::oden::open_book::open_file_folder::橙色_book::outbox_tray::package::page_facing_up::page_with_curl::pager::paperclip::peach::pear::pencil::pencil2::phone::pill::pine苹果::pizza::postal_horn::postbox::pouch::poultry_leg::pound::purse::pushpin::radio::ramen::ribbon::rice::rice_ball::rice_cracker::rice_scene::ring::rugby_football::running_shirt_with_sash::sake::sandal::santa::satellite::saxophone::school_satchel::scissors::scroll::seat::shaved_ice::shirt::shoe::shower::ski::smoking::snowboarder::soccer::sound::space_invader::spades::spaghetti::sparkle::sparkler::speaker::stew::straight_ruler::strawberry::surfer::sushi::sweet_potato::swimmer::syringe::tada::tanabata_tree::tangerine::tea::telephone::telephone_receiver::telescope::tennis::toilet::tomato::tophat::triangular_ruler::trophy::tropical_drink::trumpet::tshirt::tv::unlock::vhs::video_camera::video_game::violin::watch::watermelon::wind_chime::wine_glass::womans_clothes::womans_hat::wrench::yen:
### Places
-:aerial_tramway::airplane::ambulance::anchor::articulated_lorry::atm::bank::barber::beginner::bike::blue_car::boat::bridge_at_night::bullettrain_front::bullettrain_side::bus::busstop::car::carousel_horse::checke红色_flag::church::circus_tent::city_sunrise::city_sunset::cn::construction::convenience_store::crossed_flags::de::department_store::es::european_castle::european_post_office::factory::ferris_wheel::fire_engine::fountain::fr::fuelpump::gb::helicopter::hospital::hotel::hotsprings::house::house_with_garden::it::izakaya_lantern::japan::japanese_castle::jp::kr::light_rail::love_hotel::minibus::monorail::mount_fuji::mountain_cableway::mountain_railway::moyai::office::oncoming_automobile::oncoming_bus::oncoming_police_car::oncoming_taxi::performing_arts::police_car::post_office::railway_car::rainbow::红色_car::rocket::roller_coaster::rotating_light::round_pushpin::rowboat::ru::sailboat::school::ship::slot_machine::speedboat::stars::station::statue_of_liberty::steam_locomotive::sunrise::sunrise_over_mountains::suspension_railway::taxi::tent::ticket::tokyo_tower::tractor::traffic_light::train::train2::tram::triangular_flag_on_post::trolleybus::truck::uk::us::vertical_traffic_light::warning::wedding:
+:aerial_tramway::airplane::ambulance::anchor::articulated_lorry::atm::bank::barber::beginner::bike::blue_car::boat::bridge_at_night::bullettrain_front::bullettrain_side::bus::busstop::car::carousel_horse::checkered_flag::church::circus_tent::city_sunrise::city_sunset::cn::construction::convenience_store::crossed_flags::de::department_store::es::european_castle::european_post_office::factory::ferris_wheel::fire_engine::fountain::fr::fuelpump::gb::helicopter::hospital::hotel::hotsprings::house::house_with_garden::it::izakaya_lantern::japan::japanese_castle::jp::kr::light_rail::love_hotel::minibus::monorail::mount_fuji::mountain_cableway::mountain_railway::moyai::office::oncoming_automobile::oncoming_bus::oncoming_police_car::oncoming_taxi::performing_arts::police_car::post_office::railway_car::rainbow::red_car::rocket::roller_coaster::rotating_light::round_pushpin::rowboat::ru::sailboat::school::ship::slot_machine::speedboat::stars::station::statue_of_liberty::steam_locomotive::sunrise::sunrise_over_mountains::suspension_railway::taxi::tent::ticket::tokyo_tower::tractor::traffic_light::train::train2::tram::triangular_flag_on_post::trolleybus::truck::uk::us::vertical_traffic_light::warning::wedding:
### Symbols
-:100::1234::a::ab::abc::abcd::accept::aquarius::aries::arrow_backward::arrow_double_down::arrow_double_up::arrow_down::arrow_down_small::arrow_forward::arrow_heading_down::arrow_heading_up::arrow_left::arrow_lower_left::arrow_lower_right::arrow_right::arrow_right_hook::arrow_up::arrow_up_down::arrow_up_small::arrow_upper_left::arrow_upper_right::arrows_clockwise::arrows_counterclockwise::b::baby_symbol::back::baggage_claim::ballot_box_with_check::bangbang::black_circle::black_large_square::black_medium_small_square::black_medium_square::black_small_square::black_square_button::cancer::capital_abcd::capricorn::chart::children_crossing::cinema::cl::clock1::clock10::clock1030::clock11::clock1130::clock12::clock1230::clock130::clock2::clock230::clock3::clock330::clock4::clock430::clock5::clock530::clock6::clock630::clock7::clock730::clock8::clock830::clock9::clock930::congratulations::cool::copyright::curly_loop::currency_exchange::customs::diamond_shape_with_a_dot_inside::do_not_litter::eight::eight_pointed_black_star::eight_spoked_asterisk::end::fast_forward::five::four::free::gemini::hash::heart_decoration::heavy_check_mark::heavy_division_sign::heavy_dollar_sign::heavy_exclamation_mark::heavy_minus_sign::heavy_multiplication_x::heavy_plus_sign::id::ideograph_advantage::information_source::interrobang::keycap_ten::koko::large_blue_circle::large_blue_diamond::large_橙色_diamond::left_luggage::left_right_arrow::leftwards_arrow_with_hook::leo::libra::link::m::mens::metro::mobile_phone_off::negative_squa红色_cross_mark::new::ng::nine::no_bicycles::no_entry::no_entry_sign::no_mobile_phones::no_pedestrians::no_smoking::non-potable_water::o::o2::ok::on::one::ophiuchus::parking::part_alternation_mark::passport_control::pisces::potable_water::put_litter_in_its_place::radio_button::recycle::红色_circle::registe红色::repeat::repeat_one::restroom::rewind::sa::sagittarius::scorpius::secret::seven::shipit::signal_strength::six::six_pointed_star::small_blue_diamond::small_橙色_diamond::small_红色_triangle::small_红色_triangle_down::soon::sos::symbols::taurus::three::tm::top::trident::twisted_rightwards_arrows::two::u5272::u5408::u55b6::u6307::u6708::u6709::u6e80::u7121::u7533::u7981::u7a7a::underage::up::vibration_mode::virgo::vs::wavy_dash::wc::wheelchair::white_check_mark::white_circle::white_flower::white_large_square::white_medium_small_square::white_medium_square::white_small_square::white_square_button::womens::x::zero:
+:100::1234::a::ab::abc::abcd::accept::aquarius::aries::arrow_backward::arrow_double_down::arrow_double_up::arrow_down::arrow_down_small::arrow_forward::arrow_heading_down::arrow_heading_up::arrow_left::arrow_lower_left::arrow_lower_right::arrow_right::arrow_right_hook::arrow_up::arrow_up_down::arrow_up_small::arrow_upper_left::arrow_upper_right::arrows_clockwise::arrows_counterclockwise::b::baby_symbol::back::baggage_claim::ballot_box_with_check::bangbang::black_circle::black_large_square::black_medium_small_square::black_medium_square::black_small_square::black_square_button::cancer::capital_abcd::capricorn::chart::children_crossing::cinema::cl::clock1::clock10::clock1030::clock11::clock1130::clock12::clock1230::clock130::clock2::clock230::clock3::clock330::clock4::clock430::clock5::clock530::clock6::clock630::clock7::clock730::clock8::clock830::clock9::clock930::congratulations::cool::copyright::curly_loop::currency_exchange::customs::diamond_shape_with_a_dot_inside::do_not_litter::eight::eight_pointed_black_star::eight_spoked_asterisk::end::fast_forward::five::four::free::gemini::hash::heart_decoration::heavy_check_mark::heavy_division_sign::heavy_dollar_sign::heavy_exclamation_mark::heavy_minus_sign::heavy_multiplication_x::heavy_plus_sign::id::ideograph_advantage::information_source::interrobang::keycap_ten::koko::large_blue_circle::large_blue_diamond::large_橙色_diamond::left_luggage::left_right_arrow::leftwards_arrow_with_hook::leo::libra::link::m::mens::metro::mobile_phone_off::negative_squared_cross_mark::new::ng::nine::no_bicycles::no_entry::no_entry_sign::no_mobile_phones::no_pedestrians::no_smoking::non-potable_water::o::o2::ok::on::one::ophiuchus::parking::part_alternation_mark::passport_control::pisces::potable_water::put_litter_in_its_place::radio_button::recycle::red_circle::registered::repeat::repeat_one::restroom::rewind::sa::sagittarius::scorpius::secret::seven::shipit::signal_strength::six::six_pointed_star::small_blue_diamond::small_橙色_diamond::small_red_triangle::small_red_triangle_down::soon::sos::symbols::taurus::three::tm::top::trident::twisted_rightwards_arrows::two::u5272::u5408::u55b6::u6307::u6708::u6709::u6e80::u7121::u7533::u7981::u7a7a::underage::up::vibration_mode::virgo::vs::wavy_dash::wc::wheelchair::white_check_mark::white_circle::white_flower::white_large_square::white_medium_small_square::white_medium_square::white_small_square::white_square_button::womens::x::zero:
## Insert
diff --git a/exampleSite/zh/content/static/android-chrome-192x192.png b/exampleSite/zh/content/static/android-chrome-192x192.png
new file mode 100644
index 00000000..87ba30b8
Binary files /dev/null and b/exampleSite/zh/content/static/android-chrome-192x192.png differ
diff --git a/exampleSite/zh/content/static/android-chrome-512x512.png b/exampleSite/zh/content/static/android-chrome-512x512.png
new file mode 100644
index 00000000..3e52be3b
Binary files /dev/null and b/exampleSite/zh/content/static/android-chrome-512x512.png differ
diff --git a/exampleSite/zh/content/static/apple-touch-icon.png b/exampleSite/zh/content/static/apple-touch-icon.png
new file mode 100644
index 00000000..26f95ea8
Binary files /dev/null and b/exampleSite/zh/content/static/apple-touch-icon.png differ
diff --git a/exampleSite/zh/content/static/browserconfig.xml b/exampleSite/zh/content/static/browserconfig.xml
new file mode 100644
index 00000000..a47e5a5b
--- /dev/null
+++ b/exampleSite/zh/content/static/browserconfig.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+ #2d89ef
+
+
+
diff --git a/exampleSite/zh/content/static/favicon-16x16.png b/exampleSite/zh/content/static/favicon-16x16.png
new file mode 100644
index 00000000..0594fcf0
Binary files /dev/null and b/exampleSite/zh/content/static/favicon-16x16.png differ
diff --git a/exampleSite/zh/content/static/favicon-32x32.png b/exampleSite/zh/content/static/favicon-32x32.png
new file mode 100644
index 00000000..1d3f09af
Binary files /dev/null and b/exampleSite/zh/content/static/favicon-32x32.png differ
diff --git a/exampleSite/zh/content/static/favicon.ico b/exampleSite/zh/content/static/favicon.ico
new file mode 100644
index 00000000..52540216
Binary files /dev/null and b/exampleSite/zh/content/static/favicon.ico differ
diff --git a/exampleSite/zh/content/static/images/Apple-Devices-Preview.png b/exampleSite/zh/content/static/images/Apple-Devices-Preview.png
new file mode 100644
index 00000000..d1bd34c9
Binary files /dev/null and b/exampleSite/zh/content/static/images/Apple-Devices-Preview.png differ
diff --git a/exampleSite/zh/content/static/images/avatar.png b/exampleSite/zh/content/static/images/avatar.png
new file mode 100644
index 00000000..f8d370d7
Binary files /dev/null and b/exampleSite/zh/content/static/images/avatar.png differ
diff --git a/exampleSite/zh/content/static/logo.png b/exampleSite/zh/content/static/logo.png
new file mode 100644
index 00000000..f8d370d7
Binary files /dev/null and b/exampleSite/zh/content/static/logo.png differ
diff --git a/exampleSite/zh/content/static/mstile-150x150.png b/exampleSite/zh/content/static/mstile-150x150.png
new file mode 100644
index 00000000..0332bbea
Binary files /dev/null and b/exampleSite/zh/content/static/mstile-150x150.png differ
diff --git a/exampleSite/zh/content/static/safari-pinned-tab.svg b/exampleSite/zh/content/static/safari-pinned-tab.svg
new file mode 100644
index 00000000..05faebc3
--- /dev/null
+++ b/exampleSite/zh/content/static/safari-pinned-tab.svg
@@ -0,0 +1,28 @@
+
+
+
diff --git a/exampleSite/zh/content/static/site.webmanifest b/exampleSite/zh/content/static/site.webmanifest
new file mode 100644
index 00000000..73497a5c
--- /dev/null
+++ b/exampleSite/zh/content/static/site.webmanifest
@@ -0,0 +1,19 @@
+{
+ "name": "LoveIt",
+ "short_name": "LoveIt",
+ "icons": [
+ {
+ "src": "/android-chrome-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ },
+ {
+ "src": "/android-chrome-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ }
+ ],
+ "theme_color": "#ffffff",
+ "background_color": "#ffffff",
+ "display": "standalone"
+}