feat(home): add custom content for home page (#248)
This commit is contained in:
@@ -537,6 +537,7 @@ enableEmoji = true
|
||||
# date format
|
||||
# 日期格式
|
||||
dateFormat = "2006-01-02"
|
||||
|
||||
# Header config
|
||||
# 页面头部导航栏配置
|
||||
[params.header]
|
||||
@@ -546,6 +547,7 @@ enableEmoji = true
|
||||
# mobile header mode ("fixed", "normal", "auto")
|
||||
# 移动端导航栏模式 ("fixed", "normal", "auto")
|
||||
mobileMode = "auto"
|
||||
|
||||
# Footer config
|
||||
# 页面底部信息配置
|
||||
[params.footer]
|
||||
@@ -571,6 +573,7 @@ enableEmoji = true
|
||||
# license info (HTML format is supported)
|
||||
# 许可协议信息 (支持 HTML 格式)
|
||||
license= '<a rel="license external nofollow noopener noreffer" href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank">CC BY-NC 4.0</a>'
|
||||
|
||||
# Section (all posts) page config
|
||||
# Section (所有文章) 页面配置
|
||||
[params.section]
|
||||
@@ -580,6 +583,7 @@ enableEmoji = true
|
||||
# date format (month and day)
|
||||
# 日期格式 (月和日)
|
||||
dateFormat = "01-02"
|
||||
|
||||
# List (category or tag) page config
|
||||
# List (目录或标签) 页面配置
|
||||
[params.list]
|
||||
@@ -589,6 +593,7 @@ enableEmoji = true
|
||||
# date format (month and day)
|
||||
# 日期格式 (月和日)
|
||||
dateFormat = "01-02"
|
||||
|
||||
# Page config
|
||||
# 文章页面配置
|
||||
[params.page]
|
||||
@@ -774,7 +779,8 @@ enableEmoji = true
|
||||
url = "cover.png"
|
||||
width = 800
|
||||
height = 600
|
||||
# site verification code for Google/Bing/Yandex/Pinterest/Baidu
|
||||
|
||||
# Site verification code for Google/Bing/Yandex/Pinterest/Baidu
|
||||
# 网站验证代码,用于 Google/Bing/Yandex/Pinterest/Baidu
|
||||
[params.verification]
|
||||
google = ""
|
||||
@@ -782,10 +788,26 @@ enableEmoji = true
|
||||
yandex = ""
|
||||
pinterest = ""
|
||||
baidu = ""
|
||||
[params.fathomAnalytics]
|
||||
# siteID = "ABC123"
|
||||
# If you're self hosting use this for your tracker
|
||||
# serverURL = "https://example.com"
|
||||
|
||||
# Analytics config
|
||||
# 网站分析配置
|
||||
[params.analytics]
|
||||
enable = false
|
||||
# Google Analytics
|
||||
[params.analytics.google]
|
||||
id = ""
|
||||
# whether to anonymize IP
|
||||
# 是否匿名化用户 IP
|
||||
anonymizeIP = true
|
||||
# whether to use cookie
|
||||
# 是否使用 cookie
|
||||
cookie = false
|
||||
# Fathom Analytics
|
||||
[params.analytics.fathom]
|
||||
id = ""
|
||||
# server url for your tracker if you're self hosting
|
||||
# 自行托管追踪器时的主机路径
|
||||
server = ""
|
||||
|
||||
# CSS and JS Files CDN
|
||||
# CSS 和 JS 文件的 CDN 设置
|
||||
@@ -899,8 +921,12 @@ enableEmoji = true
|
||||
# Privacy config (https://gohugo.io/about/hugo-and-gdpr/)
|
||||
# 隐私信息配置 (https://gohugo.io/about/hugo-and-gdpr/)
|
||||
[privacy]
|
||||
# privacy of the Google Analytics (replaced by params.analytics.google)
|
||||
# Google Analytics 相关隐私 (被 params.analytics.google 替代)
|
||||
[privacy.googleAnalytics]
|
||||
anonymizeIP = true
|
||||
# ...
|
||||
[privacy.twitter]
|
||||
enableDNT = true
|
||||
[privacy.youtube]
|
||||
privacyEnhanced = true
|
||||
|
||||
|
||||
@@ -26,7 +26,8 @@ It is based on the original [LeaveIt Theme](https://github.com/liuzc/LeaveIt/) a
|
||||
|
||||
* :(fas fa-rocket): Optimized for **performance**: [99]/[100] on mobile and [100]/[100] on desktop in [Google PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights)
|
||||
* :(fab fa-searchengin): Optimized SEO performance with a correct **SEO SCHEMA** based on JSON-LD
|
||||
* :(fab fa-google): [**Google Analytics**](https://analytics.google.com/analytics) supported
|
||||
* :(fab fa-google): **[Google Analytics](https://analytics.google.com/analytics)** supported
|
||||
* :(far fa-chart-bar): **[Fathom Analytics](https://usefathom.com/)** supported
|
||||
* :(fas fa-search): Search engine **verification** supported (Google, Bind, Yandex and Baidu)
|
||||
* :(fas fa-tachometer-alt): **CDN** for third-party libraries supported
|
||||
* :(fas fa-cloud-download-alt): Automatically converted images with **Lazy Load** by [lazysizes](https://github.com/aFarkas/lazysizes)
|
||||
@@ -76,7 +77,7 @@ It is based on the original [LeaveIt Theme](https://github.com/liuzc/LeaveIt/) a
|
||||
|
||||
### License
|
||||
|
||||
LoveIt is licensed under the MIT license.
|
||||
LoveIt is licensed under the **MIT** license.
|
||||
|
||||
Check the [LICENSE file](https://github.com/dillonzq/LoveIt/blob/master/LICENSE) for details.
|
||||
|
||||
|
||||
@@ -31,7 +31,8 @@ It is based on the original [LeaveIt Theme](https://github.com/liuzc/LeaveIt/) a
|
||||
|
||||
* :(fas fa-rocket): Optimized for **performance**: [99]/[100] on mobile and [100]/[100] on desktop in [Google PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights)
|
||||
* :(fab fa-searchengin): Optimized SEO performance with a correct **SEO SCHEMA** based on JSON-LD
|
||||
* :(fab fa-google): [**Google Analytics**](https://analytics.google.com/analytics) supported
|
||||
* :(fab fa-google): **[Google Analytics](https://analytics.google.com/analytics)** supported
|
||||
* :(far fa-chart-bar): **[Fathom Analytics](https://usefathom.com/)** supported
|
||||
* :(fas fa-search): Search engine **verification** supported (Google, Bind, Yandex and Baidu)
|
||||
* :(fas fa-tachometer-alt): **CDN** for third-party libraries supported
|
||||
* :(fas fa-cloud-download-alt): Automatically converted images with **Lazy Load** by [lazysizes](https://github.com/aFarkas/lazysizes)
|
||||
@@ -81,7 +82,7 @@ It is based on the original [LeaveIt Theme](https://github.com/liuzc/LeaveIt/) a
|
||||
|
||||
### License
|
||||
|
||||
LoveIt is licensed under the MIT license.
|
||||
LoveIt is licensed under the **MIT** license.
|
||||
|
||||
Check the [LICENSE file](https://github.com/dillonzq/LoveIt/blob/master/LICENSE) for details.
|
||||
|
||||
|
||||
@@ -27,6 +27,7 @@ lightgallery: true
|
||||
* :(fas fa-rocket): **性能**优化:在 [Google PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights) 中, [99]/[100] 的移动设备得分和 [100]/[100] 的桌面设备得分
|
||||
* :(fab fa-searchengin): 使用基于 JSON-LD 格式 的 **SEO SCHEMA** 文件进行 SEO 优化
|
||||
* :(fab fa-google): 支持 **[Google Analytics](https://analytics.google.com/analytics)**
|
||||
* :(far fa-chart-bar): 支持 **[Fathom Analytics](https://usefathom.com/)**
|
||||
* :(fas fa-search): 支持搜索引擎的**网站验证** (Google, Bind, Yandex and Baidu)
|
||||
* :(fas fa-tachometer-alt): 支持所有第三方库的 **CDN**
|
||||
* :(fas fa-cloud-download-alt): 基于 [lazysizes](https://github.com/aFarkas/lazysizes) 自动转换图片为**懒加载**
|
||||
@@ -76,7 +77,7 @@ lightgallery: true
|
||||
|
||||
### 许可协议
|
||||
|
||||
LoveIt 根据 MIT 许可协议授权。
|
||||
LoveIt 根据 **MIT** 许可协议授权。
|
||||
|
||||
更多信息请查看 [LICENSE 文件](https://github.com/dillonzq/LoveIt/blob/master/LICENSE)。
|
||||
|
||||
|
||||
@@ -503,6 +503,22 @@ Note that some of these parameters are explained in details in other sections of
|
||||
pinterest = ""
|
||||
baidu = ""
|
||||
|
||||
# {{< version 0.2.0 >}} Analytics config
|
||||
[params.analytics]
|
||||
enable = false
|
||||
# Google Analytics
|
||||
[params.analytics.google]
|
||||
id = ""
|
||||
# whether to anonymize IP
|
||||
anonymizeIP = true
|
||||
# whether to use cookie
|
||||
cookie = false
|
||||
# Fathom Analytics
|
||||
[params.analytics.fathom]
|
||||
id = ""
|
||||
# server url for your tracker if you're self hosting
|
||||
server = ""
|
||||
|
||||
# CSS and JS Files CDN config
|
||||
[params.cdn]
|
||||
# {{< version 0.2.0 >}} {{< link "https://github.com/necolas/normalize.css" "normalize.css" >}}@8.0.1
|
||||
@@ -605,8 +621,11 @@ Note that some of these parameters are explained in details in other sections of
|
||||
|
||||
# {{< link "https://gohugo.io/about/hugo-and-gdpr/" "Privacy config" >}}
|
||||
[privacy]
|
||||
# {{< version 0.2.0 deleted >}} privacy of the Google Analytics (replaced by params.analytics.google)
|
||||
[privacy.googleAnalytics]
|
||||
anonymizeIP = true
|
||||
# ...
|
||||
[privacy.twitter]
|
||||
enableDNT = true
|
||||
[privacy.youtube]
|
||||
privacyEnhanced = true
|
||||
|
||||
|
||||
@@ -508,6 +508,22 @@ Note that some of these parameters are explained in details in other sections of
|
||||
pinterest = ""
|
||||
baidu = ""
|
||||
|
||||
# {{< version 0.2.0 >}} Analytics config
|
||||
[params.analytics]
|
||||
enable = false
|
||||
# Google Analytics
|
||||
[params.analytics.google]
|
||||
id = ""
|
||||
# whether to anonymize IP
|
||||
anonymizeIP = true
|
||||
# whether to use cookie
|
||||
cookie = false
|
||||
# Fathom Analytics
|
||||
[params.analytics.fathom]
|
||||
id = ""
|
||||
# server url for your tracker if you're self hosting
|
||||
server = ""
|
||||
|
||||
# CSS and JS Files CDN config
|
||||
[params.cdn]
|
||||
# {{< version 0.2.0 >}} {{< link "https://github.com/necolas/normalize.css" "normalize.css" >}}@8.0.1
|
||||
@@ -610,8 +626,11 @@ Note that some of these parameters are explained in details in other sections of
|
||||
|
||||
# {{< link "https://gohugo.io/about/hugo-and-gdpr/" "Privacy config" >}}
|
||||
[privacy]
|
||||
# {{< version 0.2.0 deleted >}} privacy of the Google Analytics (replaced by params.analytics.google)
|
||||
[privacy.googleAnalytics]
|
||||
anonymizeIP = true
|
||||
# ...
|
||||
[privacy.twitter]
|
||||
enableDNT = true
|
||||
[privacy.youtube]
|
||||
privacyEnhanced = true
|
||||
|
||||
|
||||
@@ -506,6 +506,22 @@ hugo
|
||||
pinterest = ""
|
||||
baidu = ""
|
||||
|
||||
# {{< version 0.2.0 >}} 网站分析配置
|
||||
[params.analytics]
|
||||
enable = false
|
||||
# Google Analytics
|
||||
[params.analytics.google]
|
||||
id = ""
|
||||
# 是否匿名化用户 IP
|
||||
anonymizeIP = true
|
||||
# 是否使用 cookie
|
||||
cookie = false
|
||||
# Fathom Analytics
|
||||
[params.analytics.fathom]
|
||||
id = ""
|
||||
# 自行托管追踪器时的主机路径
|
||||
server = ""
|
||||
|
||||
# CSS 和 JS 文件的 CDN 设置
|
||||
[params.cdn]
|
||||
# {{< version 0.2.0 >}} {{< link "https://github.com/necolas/normalize.css" "normalize.css" >}}@8.0.1
|
||||
@@ -608,8 +624,11 @@ hugo
|
||||
|
||||
# {{< link "https://gohugo.io/about/hugo-and-gdpr/" "隐私信息配置" >}}
|
||||
[privacy]
|
||||
# {{< version 0.2.0 deleted >}} Google Analytics 相关隐私 (被 params.analytics.google 替代)
|
||||
[privacy.googleAnalytics]
|
||||
anonymizeIP = true
|
||||
# ...
|
||||
[privacy.twitter]
|
||||
enableDNT = true
|
||||
[privacy.youtube]
|
||||
privacyEnhanced = true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user