2017-09-02 13:29:06 +00:00
|
|
|
|
baseURL = "http://localhost:1313/"
|
2017-08-31 14:50:37 +00:00
|
|
|
|
languageCode = "en"
|
2018-02-01 13:35:04 +00:00
|
|
|
|
defaultContentLanguage = "en" # en / zh-cn / ... (This field determines which i18n file to use)
|
2017-09-16 09:49:53 +00:00
|
|
|
|
title = "Even - A super concise theme for Hugo"
|
2018-07-06 14:50:37 +00:00
|
|
|
|
preserveTaxonomyNames = true
|
2017-08-31 14:50:37 +00:00
|
|
|
|
enableRobotsTXT = true
|
|
|
|
|
enableEmoji = true
|
|
|
|
|
theme = "even"
|
2019-02-14 12:26:50 +00:00
|
|
|
|
enableGitInfo = false # use git commit log to generate lastmod record # 可根据 Git 中的提交生成最近更新记录。
|
2017-08-31 14:50:37 +00:00
|
|
|
|
|
2018-07-09 16:49:20 +00:00
|
|
|
|
# Syntax highlighting by Chroma. NOTE: Don't enable `highlightInClient` and `chroma` at the same time!
|
|
|
|
|
pygmentsOptions = "linenos=table"
|
|
|
|
|
pygmentsCodefences = true
|
|
|
|
|
pygmentsUseClasses = true
|
|
|
|
|
pygmentsCodefencesGuessSyntax = true
|
|
|
|
|
|
2017-08-31 14:50:37 +00:00
|
|
|
|
hasCJKLanguage = true # has chinese/japanese/korean ? # 自动检测是否包含 中文\日文\韩文
|
2018-03-12 14:25:22 +00:00
|
|
|
|
paginate = 5 # 首页每页显示的文章数
|
2017-08-31 14:50:37 +00:00
|
|
|
|
disqusShortname = "" # disqus_shortname
|
|
|
|
|
googleAnalytics = "" # UA-XXXXXXXX-X
|
2017-09-03 06:44:34 +00:00
|
|
|
|
copyright = "" # default: author.name ↓ # 默认为下面配置的author.name ↓
|
2017-08-31 14:50:37 +00:00
|
|
|
|
|
2017-12-05 12:09:12 +00:00
|
|
|
|
[author] # essential # 必需
|
2017-08-31 14:50:37 +00:00
|
|
|
|
name = "olOwOlo"
|
|
|
|
|
|
2017-12-05 12:09:12 +00:00
|
|
|
|
[sitemap] # essential # 必需
|
2017-08-31 14:50:37 +00:00
|
|
|
|
changefreq = "weekly"
|
|
|
|
|
priority = 0.5
|
|
|
|
|
filename = "sitemap.xml"
|
|
|
|
|
|
|
|
|
|
[[menu.main]] # config your menu # 配置目录
|
|
|
|
|
name = "Home"
|
|
|
|
|
weight = 10
|
|
|
|
|
identifier = "home"
|
|
|
|
|
url = "/"
|
|
|
|
|
[[menu.main]]
|
|
|
|
|
name = "Archives"
|
|
|
|
|
weight = 20
|
|
|
|
|
identifier = "archives"
|
|
|
|
|
url = "/post/"
|
|
|
|
|
[[menu.main]]
|
|
|
|
|
name = "Tags"
|
|
|
|
|
weight = 30
|
|
|
|
|
identifier = "tags"
|
|
|
|
|
url = "/tags/"
|
|
|
|
|
[[menu.main]]
|
|
|
|
|
name = "Categories"
|
|
|
|
|
weight = 40
|
|
|
|
|
identifier = "categories"
|
|
|
|
|
url = "/categories/"
|
|
|
|
|
|
|
|
|
|
[params]
|
2018-11-06 11:00:57 +00:00
|
|
|
|
version = "4.x" # Used to give a friendly message when you have an incompatible update
|
2017-10-13 13:38:30 +00:00
|
|
|
|
debug = false # If true, load `eruda.min.js`. See https://github.com/liriliri/eruda
|
|
|
|
|
|
2017-09-16 09:49:53 +00:00
|
|
|
|
since = "2017" # Site creation time # 站点建立时间
|
2019-02-14 12:26:50 +00:00
|
|
|
|
# use public git repo url to link lastmod git commit, enableGitInfo should be true.
|
|
|
|
|
# 指定 git 仓库地址,可以生成指向最近更新的 git commit 的链接,需要将 enableGitInfo 设置成 true.
|
|
|
|
|
gitRepo = ""
|
2017-09-16 09:49:53 +00:00
|
|
|
|
|
2017-12-05 12:09:12 +00:00
|
|
|
|
# site info (optional) # 站点信息(可选,不需要的可以直接注释掉)
|
2017-09-16 09:49:53 +00:00
|
|
|
|
logoTitle = "Even" # default: the title value # 默认值: 上面设置的title值
|
2017-09-05 17:13:02 +00:00
|
|
|
|
keywords = ["Hugo", "theme","even"]
|
|
|
|
|
description = "Hugo theme even example site."
|
2017-08-31 14:50:37 +00:00
|
|
|
|
|
2017-12-05 12:09:12 +00:00
|
|
|
|
# paginate of archives, tags and categories # 归档、标签、分类每页显示的文章数目,建议修改为一个较大的值
|
2018-03-12 14:25:22 +00:00
|
|
|
|
archivePaginate = 5
|
2017-10-13 13:38:30 +00:00
|
|
|
|
|
2018-05-31 16:36:52 +00:00
|
|
|
|
# show 'xx Posts In Total' in archive page ? # 是否在归档页显示文章的总数
|
|
|
|
|
showArchiveCount = false
|
|
|
|
|
|
2017-09-24 16:56:55 +00:00
|
|
|
|
# The date format to use; for a list of valid formats, see https://gohugo.io/functions/format/
|
|
|
|
|
dateFormatToUse = "2006-01-02"
|
2017-09-11 15:15:13 +00:00
|
|
|
|
|
|
|
|
|
# show word count and read time ? # 是否显示字数统计与阅读时间
|
2017-09-12 15:59:08 +00:00
|
|
|
|
moreMeta = false
|
2017-09-11 15:15:13 +00:00
|
|
|
|
|
2018-07-09 16:49:20 +00:00
|
|
|
|
# Syntax highlighting by highlight.js
|
|
|
|
|
highlightInClient = false
|
|
|
|
|
|
2017-12-06 12:34:22 +00:00
|
|
|
|
# 一些全局开关,你也可以在每一篇内容的 front matter 中针对单篇内容关闭或开启某些功能,在 archetypes/default.md 查看更多信息。
|
|
|
|
|
# Some global options, you can also close or open something in front matter for a single post, see more information from `archetypes/default.md`.
|
2017-08-31 14:50:37 +00:00
|
|
|
|
toc = true # 是否开启目录
|
2017-12-06 12:34:22 +00:00
|
|
|
|
autoCollapseToc = false # Auto expand and collapse toc # 目录自动展开/折叠
|
2017-08-31 14:50:37 +00:00
|
|
|
|
fancybox = true # see https://github.com/fancyapps/fancybox # 是否启用fancybox(图片可点击)
|
2018-07-06 14:24:47 +00:00
|
|
|
|
|
|
|
|
|
# mathjax
|
2017-12-06 12:34:22 +00:00
|
|
|
|
mathjax = false # see https://www.mathjax.org/ # 是否使用mathjax(数学公式)
|
2018-01-15 14:22:14 +00:00
|
|
|
|
mathjaxEnableSingleDollar = false # 是否使用 $...$ 即可進行inline latex渲染
|
2018-04-15 15:43:31 +00:00
|
|
|
|
mathjaxEnableAutoNumber = false # 是否使用公式自动编号
|
2018-07-06 14:24:47 +00:00
|
|
|
|
mathjaxUseLocalFiles = false # You should install mathjax in `yout-site/static/lib/mathjax`
|
2017-08-31 14:50:37 +00:00
|
|
|
|
|
2018-01-31 14:39:16 +00:00
|
|
|
|
postMetaInFooter = true # contain author, lastMod, markdown link, license # 包含作者,上次修改时间,markdown链接,许可信息
|
|
|
|
|
linkToMarkDown = false # Only effective when hugo will output .md files. # 链接到markdown原始文件(仅当允许hugo生成markdown文件时有效)
|
|
|
|
|
contentCopyright = '' # e.g. '<a rel="license noopener" href="https://creativecommons.org/licenses/by-nc-nd/4.0/" target="_blank">CC BY-NC-ND 4.0</a>'
|
2017-08-31 14:50:37 +00:00
|
|
|
|
|
|
|
|
|
changyanAppid = "" # Changyan app id # 畅言
|
|
|
|
|
changyanAppkey = "" # Changyan app key
|
2018-07-06 14:50:37 +00:00
|
|
|
|
|
2017-12-20 13:33:05 +00:00
|
|
|
|
livereUID = "" # LiveRe UID # 来必力
|
2018-07-06 14:50:37 +00:00
|
|
|
|
|
|
|
|
|
baiduPush = false # baidu push # 百度
|
|
|
|
|
baiduAnalytics = "" # Baidu Analytics
|
|
|
|
|
baiduVerification = "" # Baidu Verification
|
|
|
|
|
googleVerification = "" # Google Verification # 谷歌
|
2017-08-31 14:50:37 +00:00
|
|
|
|
|
2018-02-03 13:41:44 +00:00
|
|
|
|
# Link custom CSS and JS assets
|
|
|
|
|
# (relative to /static/css and /static/js respectively)
|
|
|
|
|
customCSS = []
|
|
|
|
|
customJS = []
|
|
|
|
|
|
2019-03-31 07:21:17 +00:00
|
|
|
|
uglyURLs = false # please keep same with uglyurls setting
|
|
|
|
|
|
2017-09-12 15:59:08 +00:00
|
|
|
|
[params.publicCDN] # load these files from public cdn # 启用公共CDN,需自行定义
|
2018-07-06 14:52:10 +00:00
|
|
|
|
enable = true
|
2017-09-12 15:59:08 +00:00
|
|
|
|
jquery = '<script src="https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>'
|
|
|
|
|
slideout = '<script src="https://cdn.jsdelivr.net/npm/slideout@1.0.1/dist/slideout.min.js" integrity="sha256-t+zJ/g8/KXIJMjSVQdnibt4dlaDxc9zXr/9oNPeWqdg=" crossorigin="anonymous"></script>'
|
2018-07-06 14:50:37 +00:00
|
|
|
|
fancyboxJS = '<script src="https://cdn.jsdelivr.net/npm/@fancyapps/fancybox@3.1.20/dist/jquery.fancybox.min.js" integrity="sha256-XVLffZaxoWfGUEbdzuLi7pwaUJv1cecsQJQqGLe7axY=" crossorigin="anonymous"></script>'
|
|
|
|
|
fancyboxCSS = '<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/fancybox@3.1.20/dist/jquery.fancybox.min.css" integrity="sha256-7TyXnr2YU040zfSP+rEcz29ggW4j56/ujTPwjMzyqFY=" crossorigin="anonymous">'
|
2018-05-31 16:06:14 +00:00
|
|
|
|
timeagoJS = '<script src="https://cdn.jsdelivr.net/npm/timeago.js@3.0.2/dist/timeago.min.js" integrity="sha256-jwCP0NAdCBloaIWTWHmW4i3snUNMHUNO+jr9rYd2iOI=" crossorigin="anonymous"></script>'
|
|
|
|
|
timeagoLocalesJS = '<script src="https://cdn.jsdelivr.net/npm/timeago.js@3.0.2/dist/timeago.locales.min.js" integrity="sha256-ZwofwC1Lf/faQCzN7nZtfijVV6hSwxjQMwXL4gn9qU8=" crossorigin="anonymous"></script>'
|
2018-07-06 14:20:39 +00:00
|
|
|
|
flowchartDiagramsJS = '<script src="https://cdn.jsdelivr.net/npm/raphael@2.2.7/raphael.min.js" integrity="sha256-67By+NpOtm9ka1R6xpUefeGOY8kWWHHRAKlvaTJ7ONI=" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/flowchart.js@1.8.0/release/flowchart.min.js" integrity="sha256-zNGWjubXoY6rb5MnmpBNefO0RgoVYfle9p0tvOQM+6k=" crossorigin="anonymous"></script>'
|
|
|
|
|
sequenceDiagramsCSS = '<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/bramp/js-sequence-diagrams@2.0.1/dist/sequence-diagram-min.css" integrity="sha384-6QbLKJMz5dS3adWSeINZe74uSydBGFbnzaAYmp+tKyq60S7H2p6V7g1TysM5lAaF" crossorigin="anonymous">'
|
|
|
|
|
sequenceDiagramsJS = '<script src="https://cdn.jsdelivr.net/npm/webfontloader@1.6.28/webfontloader.js" integrity="sha256-4O4pS1SH31ZqrSO2A/2QJTVjTPqVe+jnYgOWUVr7EEc=" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/snapsvg@0.5.1/dist/snap.svg-min.js" integrity="sha256-oI+elz+sIm+jpn8F/qEspKoKveTc5uKeFHNNVexe6d8=" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/underscore@1.8.3/underscore-min.js" integrity="sha256-obZACiHd7gkOk9iIL/pimWMTJ4W/pBsKu+oZnSeBIek=" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/gh/bramp/js-sequence-diagrams@2.0.1/dist/sequence-diagram-min.js" integrity="sha384-8748Vn52gHJYJI0XEuPB2QlPVNUkJlJn9tHqKec6J3q2r9l8fvRxrgn/E5ZHV0sP" crossorigin="anonymous"></script>'
|
2018-05-31 16:06:14 +00:00
|
|
|
|
|
|
|
|
|
# Display a message at the beginning of an article to warn the readers that it's content may be outdated.
|
|
|
|
|
# 在文章开头显示提示信息,提醒读者文章内容可能过时。
|
|
|
|
|
[params.outdatedInfoWarning]
|
|
|
|
|
enable = false
|
|
|
|
|
hint = 30 # Display hint if the last modified time is more than these days ago. # 如果文章最后更新于这天数之前,显示提醒
|
|
|
|
|
warn = 180 # Display warning if the last modified time is more than these days ago. # 如果文章最后更新于这天数之前,显示警告
|
2018-03-11 06:47:13 +00:00
|
|
|
|
|
|
|
|
|
[params.gitment] # Gitment is a comment system based on GitHub issues. see https://github.com/imsun/gitment
|
|
|
|
|
owner = "" # Your GitHub ID
|
|
|
|
|
repo = "" # The repo to store comments
|
|
|
|
|
clientId = "" # Your client ID
|
|
|
|
|
clientSecret = "" # Your client secret
|
2017-09-12 15:59:08 +00:00
|
|
|
|
|
2018-04-05 13:44:09 +00:00
|
|
|
|
[params.gitalk] # Gitalk is a comment system based on GitHub issues. see https://github.com/gitalk/gitalk
|
|
|
|
|
owner = "" # Your GitHub ID
|
|
|
|
|
repo = "" # The repo to store comments
|
|
|
|
|
clientId = "" # Your client ID
|
|
|
|
|
clientSecret = "" # Your client secret
|
|
|
|
|
|
2019-05-25 10:50:03 +00:00
|
|
|
|
# Valine.
|
|
|
|
|
# You can get your appid and appkey from https://leancloud.cn
|
|
|
|
|
# more info please open https://valine.js.org
|
|
|
|
|
[params.valine]
|
|
|
|
|
enable = false
|
|
|
|
|
appId = '你的appId'
|
|
|
|
|
appKey = '你的appKey'
|
|
|
|
|
notify = false # mail notifier , https://github.com/xCss/Valine/wiki
|
|
|
|
|
verify = false # Verification code
|
|
|
|
|
avatar = 'mm'
|
|
|
|
|
placeholder = '说点什么吧...'
|
|
|
|
|
visitor = false
|
|
|
|
|
|
2018-03-12 13:44:54 +00:00
|
|
|
|
[params.flowchartDiagrams]# see https://blog.olowolo.com/example-site/post/js-flowchart-diagrams/
|
2018-03-12 13:30:47 +00:00
|
|
|
|
enable = false
|
|
|
|
|
options = ""
|
|
|
|
|
|
2018-03-12 13:44:54 +00:00
|
|
|
|
[params.sequenceDiagrams] # see https://blog.olowolo.com/example-site/post/js-sequence-diagrams/
|
|
|
|
|
enable = false
|
|
|
|
|
options = "" # default: "{theme: 'simple'}"
|
|
|
|
|
|
2017-12-20 13:33:05 +00:00
|
|
|
|
[params.busuanzi] # count web traffic by busuanzi # 是否使用不蒜子统计站点访问量
|
|
|
|
|
enable = false
|
|
|
|
|
siteUV = true
|
|
|
|
|
sitePV = true
|
|
|
|
|
pagePV = true
|
|
|
|
|
|
2017-09-03 06:44:34 +00:00
|
|
|
|
[params.reward] # 文章打赏
|
|
|
|
|
enable = false
|
|
|
|
|
wechat = "/path/to/your/wechat-qr-code.png" # 微信二维码
|
|
|
|
|
alipay = "/path/to/your/alipay-qr-code.png" # 支付宝二维码
|
|
|
|
|
|
2017-08-31 14:50:37 +00:00
|
|
|
|
[params.social] # 社交链接
|
2017-09-14 15:11:46 +00:00
|
|
|
|
a-email = "mailto:your@email.com"
|
2017-08-31 14:50:37 +00:00
|
|
|
|
b-stack-overflow = "http://localhost:1313"
|
|
|
|
|
c-twitter = "http://localhost:1313"
|
|
|
|
|
d-facebook = "http://localhost:1313"
|
|
|
|
|
e-linkedin = "http://localhost:1313"
|
|
|
|
|
f-google = "http://localhost:1313"
|
|
|
|
|
g-github = "http://localhost:1313"
|
|
|
|
|
h-weibo = "http://localhost:1313"
|
|
|
|
|
i-zhihu = "http://localhost:1313"
|
|
|
|
|
j-douban = "http://localhost:1313"
|
|
|
|
|
k-pocket = "http://localhost:1313"
|
|
|
|
|
l-tumblr = "http://localhost:1313"
|
2017-09-11 09:27:52 +00:00
|
|
|
|
m-instagram = "http://localhost:1313"
|
2018-11-05 07:48:44 +00:00
|
|
|
|
n-gitlab = "http://localhost:1313"
|
|
|
|
|
o-bilibili = "http://localhost:1313"
|
2017-08-31 14:50:37 +00:00
|
|
|
|
|
2018-07-09 07:16:47 +00:00
|
|
|
|
# See https://gohugo.io/about/hugo-and-gdpr/
|
|
|
|
|
[privacy]
|
|
|
|
|
[privacy.googleAnalytics]
|
|
|
|
|
anonymizeIP = true # 12.214.31.144 -> 12.214.31.0
|
|
|
|
|
[privacy.youtube]
|
|
|
|
|
privacyEnhanced = true
|
|
|
|
|
|
2017-08-31 14:50:37 +00:00
|
|
|
|
# 将下面这段配置取消注释可以使 hugo 生成 .md 文件
|
|
|
|
|
# Uncomment these options to make hugo output .md files.
|
|
|
|
|
#[mediaTypes]
|
|
|
|
|
# [mediaTypes."text/plain"]
|
2018-10-30 14:00:06 +00:00
|
|
|
|
# suffixes = ["md"]
|
2017-08-31 14:50:37 +00:00
|
|
|
|
#
|
|
|
|
|
#[outputFormats.MarkDown]
|
|
|
|
|
# mediaType = "text/plain"
|
|
|
|
|
# isPlainText = true
|
|
|
|
|
# isHTML = false
|
|
|
|
|
#
|
|
|
|
|
#[outputs]
|
|
|
|
|
# home = ["HTML", "RSS"]
|
|
|
|
|
# page = ["HTML", "MarkDown"]
|
|
|
|
|
# section = ["HTML", "RSS"]
|
|
|
|
|
# taxonomy = ["HTML", "RSS"]
|
|
|
|
|
# taxonomyTerm = ["HTML"]
|