feat: add en/zh README and exampleSite files
This commit is contained in:
243
exampleSite/zh/config.toml
Normal file
243
exampleSite/zh/config.toml
Normal file
@@ -0,0 +1,243 @@
|
||||
baseURL = "/"
|
||||
languageCode = "zh" # 网站语言标识
|
||||
defaultContentLanguage = "zh" # [en, zh, ...] 设定主题的国际化
|
||||
title = "LoveIt 主题" # 网站标题
|
||||
theme = "LoveIt" # 主题
|
||||
enableGitInfo = false # 是否使用 git 信息来生成文章的上次修改时间
|
||||
hasCJKLanguage = true # 是否包括中日韩文字
|
||||
paginate = 8 # post 模式下,主页每页显示的文章数目
|
||||
enableEmoji = true # 是否使用 emoji 代码
|
||||
enableRobotsTXT = true # 是否使用 robots.txt
|
||||
googleAnalytics = "" # [UA-XXXXXXXX-X] 谷歌分析代号
|
||||
disqusShortname = "dillonzq" # Disqus 的用户名,用来在文章中启用 Disqus 评论系统
|
||||
copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License."
|
||||
# 版权描述,仅仅用于 SEO
|
||||
|
||||
#### 代码高亮设置 (https://gohugo.io/content-management/syntax-highlighting)
|
||||
pygmentsOptions = "linenos=table"
|
||||
pygmentsCodefences = true
|
||||
pygmentsUseClasses = true
|
||||
pygmentsCodefencesGuessSyntax = true
|
||||
|
||||
staticDir = ["../static", "themes/LoveIt/assets/others"] # 静态文件目录
|
||||
|
||||
[author] #### 作者信息
|
||||
name = "XXXX"
|
||||
|
||||
[sitemap] #### Sitemap 信息
|
||||
changefreq = "weekly"
|
||||
filename = "sitemap.xml"
|
||||
priority = 0.5
|
||||
|
||||
[Permalinks] #### Permalinks 信息 (https://gohugo.io/content-management/urls/#permalinks)
|
||||
posts = "/:year/:month/:filename/"
|
||||
|
||||
[menu] #### 菜单信息
|
||||
[[menu.main]]
|
||||
identifier = "posts"
|
||||
name = "文章"
|
||||
url = "/posts/"
|
||||
weight = 1
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "tags"
|
||||
name = "标签"
|
||||
url = "/tags/"
|
||||
weight = 2
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "categories"
|
||||
name = "目录"
|
||||
url = "/categories/"
|
||||
weight = 3
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "about"
|
||||
name = "关于"
|
||||
url = "/about/"
|
||||
weight = 4
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "en"
|
||||
name = '<i class="fas fa-language"></i>'
|
||||
url = "https://hugo-loveit-en.netlify.com"
|
||||
weight = 5
|
||||
|
||||
[params]
|
||||
version = "5.x" # LoveIt 主题版本
|
||||
description = "LoveIt 主题演示" # 网站介绍
|
||||
keywords = ["XXXX", "Theme", "Hugo"] # 网站关键词
|
||||
|
||||
#### 主页配置
|
||||
home_mode = "post" # [post, other] 主页模式
|
||||
avatar = "/images/avatar.png" # 主页显示的头像路径
|
||||
subtitle = "一个简洁、优雅且高效的 Hugo 主题" # 主页显示的网站副标题
|
||||
|
||||
socialShare = true # 在文章页面是否使用分享功能
|
||||
|
||||
#### 页面底部版权信息设置
|
||||
since = 2018 # 网站创立年份
|
||||
icp = '' # ICP 备案信息,仅在中国使用 (允许使用 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>'
|
||||
# 许可协议信息 (允许使用 HTML 格式)
|
||||
gitRepo = "" # 用于生成文章上次修改时间的公共 git 仓库路径,仅在 enableGitInfo 设为 true 时有效
|
||||
|
||||
linkToMarkdown = true # 是否在文章页面显示原始 Markdown 文档链接
|
||||
|
||||
#### 网站验证代码,用于 Google/Bing/Yandex/Pinterest/Baidu
|
||||
google_verification = ""
|
||||
bing_verification = ""
|
||||
yandex_verification = ""
|
||||
pinterest_verification = ""
|
||||
baidu_verification = ""
|
||||
|
||||
[params.cdn] #### CSS 和 JS 文件的 CDN 设置
|
||||
fontawesome_free_css = '' # 例如 '<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.10.1/css/all.min.css" integrity="sha256-fdcFNFiBMrNfWL6OcAGQz6jDgNTRxnrLEd4vJYFWScE=" crossorigin="anonymous">'
|
||||
animate_css = ''
|
||||
gitalk_css = ''
|
||||
gitalk_js = ''
|
||||
valine_js = ''
|
||||
jquery_js = ''
|
||||
lazysizes_js = ''
|
||||
smooth_scroll_js = ''
|
||||
katex_css = ''
|
||||
katex_js = ''
|
||||
katex_auto_render_js = ''
|
||||
mermaid_js = ''
|
||||
typeit_js = ''
|
||||
jquery_countdown_js = ''
|
||||
aplayer_css = ''
|
||||
aplayer_js = ''
|
||||
meting_js = ''
|
||||
|
||||
[params.gravatar] # Gravatar 信息,用于优先在主页显示的头像
|
||||
email = ""
|
||||
|
||||
[params.social] # 主页的社交信息设置
|
||||
GitHub = "xxxx"
|
||||
Linkedin = "xxxx"
|
||||
Twitter = "xxxx"
|
||||
#Instagram = "xxxx"
|
||||
#Email = "xxxx"
|
||||
Facebook = "xxxx"
|
||||
Telegram = "xxxx"
|
||||
#Medium = "xxxx"
|
||||
#Gitlab = "xxxx"
|
||||
#Youtubelegacy = "xxxx"
|
||||
#Youtubecustom = "xxxx"
|
||||
#Youtubechannel = "xxxx"
|
||||
#Tumblr ="xxxx"
|
||||
#Quora = "xxxx"
|
||||
#Keybase = "xxxx"
|
||||
#Pinterest = "xxxx"
|
||||
#Reddit = "xxxx"
|
||||
#Codepen = "xxxx"
|
||||
#Bitbucket = "xxxx"
|
||||
#Stackoverflow = "xxxx"
|
||||
#Weibo = "xxxx"
|
||||
#Odnoklassniki = "xxxx"
|
||||
#VKontakte = "xxxx"
|
||||
#Flickr = "xxxx"
|
||||
#Xing = "xxxx"
|
||||
#Snapchat = "xxxx"
|
||||
#Soundcloud = "xxxx"
|
||||
#Spotify = "xxxx"
|
||||
#Bandcamp = "xxxx"
|
||||
#Paypal = "xxxx"
|
||||
#Fivehundredpx = "xxxx"
|
||||
#Mix = "xxxx"
|
||||
#Goodreads = "xxxx"
|
||||
#Lastfm = "xxxx"
|
||||
#Foursquare = "xxxx"
|
||||
#Hackernews = "xxxx"
|
||||
#Kickstarter = "xxxx"
|
||||
#Patreon = "xxxx"
|
||||
#Steam = "xxxx"
|
||||
#Twitch = "xxxx"
|
||||
#Strava = "xxxx"
|
||||
#Skype = "xxxx"
|
||||
#Whatsapp = "xxxx"
|
||||
#Zhihu = "xxxx"
|
||||
#Douban = "xxxx"
|
||||
#Angellist = "xxxx"
|
||||
#Slidershare = "xxxx"
|
||||
#Jsfiddle = "xxxx"
|
||||
#Deviantart = "xxxx"
|
||||
#Behance = "xxxx"
|
||||
#Dribble = "xxxx"
|
||||
#Wordpress = "xxxx"
|
||||
#Vine = "xxxx"
|
||||
#Googlescholar = "xxxx"
|
||||
#Researchgate = "xxxx"
|
||||
#Mastodon = "xxxx"
|
||||
#Thingiverse = "xxxx"
|
||||
|
||||
[params.share] # 文章页面的分享信息设置
|
||||
enable = true
|
||||
Twitter = true
|
||||
Facebook = true
|
||||
Reddit = true
|
||||
#Linkedin = true
|
||||
#Pinterest = true
|
||||
#HackerNews = true
|
||||
#Mix = true
|
||||
#Tumblr = true
|
||||
#VKontakte = true
|
||||
#Weibo = true
|
||||
|
||||
[params.publisher] # 出版者信息,仅用于 SEO
|
||||
name = "XXXX"
|
||||
[params.publisher.logo]
|
||||
url = "/logo.png"
|
||||
width = 127
|
||||
height = 40
|
||||
|
||||
[params.logo] # 网站图标信息,仅用于 SEO
|
||||
url = "/logo.png"
|
||||
width = 127
|
||||
height = 40
|
||||
|
||||
[params.image] # 网站图片信息,仅用于 SEO
|
||||
url = "/cover.png"
|
||||
width = 800
|
||||
height = 600
|
||||
|
||||
[params.gitalk] # Gittalk 评论系统设置 (https://github.com/gitalk/gitalk)
|
||||
owner = ""
|
||||
repo = ""
|
||||
clientId = ""
|
||||
clientSecret = ""
|
||||
|
||||
[params.valine] # Valine 评论系统设置 (https://github.com/xCss/Valine)
|
||||
enable = false
|
||||
appId = ""
|
||||
appKey = ""
|
||||
notify = false
|
||||
verify = true
|
||||
avatar = "mp"
|
||||
placeholder = "Your comment ..."
|
||||
visitor = true
|
||||
recordIP = true
|
||||
|
||||
[privacy] #### 隐私信息设置 (https://gohugo.io/about/hugo-and-gdpr/)
|
||||
[privacy.googleAnalytics]
|
||||
anonymizeIP = true
|
||||
|
||||
[privacy.youtube]
|
||||
privacyEnhanced = true
|
||||
|
||||
[mediaTypes] #### 用于输出 Markdown 格式文档的设置
|
||||
[mediaTypes."text/plain"]
|
||||
suffixes = ["md"]
|
||||
|
||||
[outputFormats.MarkDown] #### 用于输出 Markdown 格式文档的设置
|
||||
mediaType = "text/plain"
|
||||
isPlainText = true
|
||||
isHTML = false
|
||||
|
||||
[outputs] #### 用于输出 Markdown 格式文档的设置
|
||||
home = ["HTML", "RSS"]
|
||||
page = ["HTML", "MarkDown"]
|
||||
section = ["HTML", "RSS"]
|
||||
taxonomy = ["HTML", "RSS"]
|
||||
taxonomyTerm = ["HTML"]
|
||||
64
exampleSite/zh/content/about.md
Normal file
64
exampleSite/zh/content/about.md
Normal file
@@ -0,0 +1,64 @@
|
||||
---
|
||||
title: "关于 LoveIt"
|
||||
date: 2019-08-02T11:04:49+08:00
|
||||
draft: false
|
||||
---
|
||||
|
||||
[LoveIt :(far fa-heart):](https://github.com/dillonzq/LoveIt) 是一个由 [Dillon](https://dillonzq.com) 开发的**简洁**、**优雅**且**高效**的 [Hugo](https://gohugo.io/) 博客主题。
|
||||
|
||||
它的原型基于 [LeaveIt 主题](https://github.com/liuzc/LeaveIt/) 和 [KeepIt 主题](https://github.com/liuzc/LeaveIt/)。
|
||||
|
||||

|
||||
|
||||
### 特性
|
||||
|
||||
* :(fas fa-rocket): 性能优化:在 [Google PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights) 中, 99/100 的移动设备得分和 100/100 的桌面设备得分
|
||||
* :(fas fa-desktop): / :(fas fa-mobile): 布局的支持
|
||||
* :(fas fa-moon): / :(fas fa-sun): 模式
|
||||
* :(fab fa-searchengin): 使用基于 JSON-LD 格式 的 SEO SCHEMA 文件进行 SEO 优化
|
||||
* :(fas fa-layer-group): 页面和列表保持一致的视觉样式
|
||||
* :(fas fa-language): 支持多语言和国际化
|
||||
* :(fas fa-ellipsis-h): 支持分页
|
||||
* :(fab fa-google): 支持 [Google Analytics](https://analytics.google.com/analytics)
|
||||
* :(far fa-comment): 支持 [Disqus](https://disqus.com) 评论系统
|
||||
* :(far fa-comment-dots): 支持 [Gitalk](https://github.com/gitalk/gitalk) 评论系统
|
||||
* :(far fa-comment-alt): 支持 [Valine](https://valine.js.org/) 评论系统
|
||||
* :(far fa-user): 支持 [Gravatar](https://gravatar.com) 头像
|
||||
* :(fas fa-user-circle): 支持本地头像
|
||||
* :(far fa-id-card): 支持多达 54 种社交链接
|
||||
* :(fas fa-share-square): 支持文章分享
|
||||
* :(fas fa-search): 支持搜索引擎的网站验证 (Google, Bind, Yandex and Baidu)
|
||||
* :(far fa-images): 基于 [lazysizes](https://github.com/aFarkas/lazysizes) 自动转换图片为懒加载
|
||||
* :(fas fa-code): 基于 Hugo 使用的 chroma 进行代码高亮
|
||||
* :(fab fa-font-awesome): 使用 [Font Awesome](https://fontawesome.com/) 图标的扩展 Markdown 语法
|
||||
* :(fas fa-square-root-alt): 支持基于 [Katex](https://katex.org/) 的数学公式
|
||||
* :(fas fa-project-diagram): 支持基于 [mermaid](https://github.com/knsv/mermaid) 的图表和流程图生成功能
|
||||
* :(fas fa-music): 支持基于 [APlayer](https://github.com/MoePlayer/APlayer) 和 [MetingJS](https://github.com/metowolf/MetingJS) 的内嵌音乐播放器
|
||||
* :(fas fa-tv): 支持内嵌 Bilibili 视频
|
||||
* :(far fa-bell): 支持多种提醒样式的 shortcode
|
||||
* :(fas fa-align-left): 支持自定义对齐和浮动方式的 shortcode
|
||||
* :(fas fa-i-cursor): 支持基于 [TypeIt](https://typeitjs.com/) 的打字动画
|
||||
* :(far fa-clock): 支持基于 [jQuery.countdown](https://github.com/hilios/jQuery.countdown) 的倒计时动画
|
||||
* :(fas fa-arrow-up): 支持基于 [Smooth Scroll](https://github.com/cferdinandi/smooth-scroll) 的回到顶部动画
|
||||
* :(fas fa-tachometer-alt): 支持 CDN
|
||||
* ...
|
||||
|
||||
### 许可协议
|
||||
|
||||
LoveIt 根据 MIT 许可协议授权。 更多信息请查看 [LICENSE 文件](https://github.com/dillonzq/LoveIt/blob/master/LICENSE)。
|
||||
|
||||
感谢以下在主题中使用过的项目的作者:
|
||||
|
||||
* [Font Awesome](https://fontawesome.com/)
|
||||
* [Animate.css](https://daneden.github.io/animate.css/)
|
||||
* [lazysizes](https://github.com/aFarkas/lazysizes)
|
||||
* [Smooth Scroll](https://github.com/cferdinandi/smooth-scroll)
|
||||
* [TypeIt](https://typeitjs.com/)
|
||||
* [jQuery](https://github.com/jquery/jquery)
|
||||
* [jQuery.countdown](https://github.com/hilios/jQuery.countdown)
|
||||
* [Katex](https://katex.org/)
|
||||
* [mermaid](https://github.com/knsv/mermaid)
|
||||
* [APlayer](https://github.com/MoePlayer/APlayer)
|
||||
* [MetingJS](https://github.com/metowolf/MetingJS)
|
||||
* [Gitalk](https://github.com/gitalk/gitalk)
|
||||
* [Valine](https://valine.js.org/)
|
||||
25
exampleSite/zh/content/posts/LoveIt-Preview.md
Normal file
25
exampleSite/zh/content/posts/LoveIt-Preview.md
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
title: "LoveIt 主题特性预览与使用文档"
|
||||
date: 2019-08-25T16:22:42+08:00
|
||||
lastmod: 2019-08-25T16:22:42+08:00
|
||||
draft: false
|
||||
description: "这是一个 LoveIt 主题特性预览与使用文档的页面。"
|
||||
show_in_homepage: true
|
||||
show_description: false
|
||||
license: ''
|
||||
|
||||
tags: ['Hugo', '主题']
|
||||
categories: ['文档']
|
||||
|
||||
featured_image: ''
|
||||
featured_image_preview: ''
|
||||
|
||||
comment: true
|
||||
toc: true
|
||||
autoCollapseToc: true
|
||||
math: true
|
||||
---
|
||||
|
||||
这是一个 [LoveIt](https://github.com/dillonzq/LoveIt) 主题特性预览与使用文档的页面。
|
||||
|
||||
<!--more-->
|
||||
1
exampleSite/zh/themes
Symbolic link
1
exampleSite/zh/themes
Symbolic link
@@ -0,0 +1 @@
|
||||
../../..
|
||||
Reference in New Issue
Block a user